From: Raphaël Gertz Date: Sun, 8 Aug 2021 12:32:32 +0000 (+0200) Subject: New tree layout X-Git-Tag: 0.2.0~33 X-Git-Url: https://git.rapsys.eu/packbundle/commitdiff_plain/b8f0779faee6db6d4c4fe71fc417415968966e8f New tree layout Add strict types Improve documentation Cleanup --- diff --git a/Filter/FilterInterface.php b/Filter/FilterInterface.php index 2dc2b6f..f3b2987 100644 --- a/Filter/FilterInterface.php +++ b/Filter/FilterInterface.php @@ -1,9 +1,27 @@ - + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ +namespace Rapsys\PackBundle\Filter; + +/** + * Filter interface definition + * + * @todo do we need something else ? (like a constructor that read parameters or else) + */ interface FilterInterface { - //TODO: see if we need something else (like a constructor that read parameters or something else ?) - public function process($content); + /** + * Process function + * + * @param string $content The content to process + * @return string The processed content + */ + public function process(string $content): string; }