]> Raphaƫl G. Git Repositories - packbundle/blob - Twig/Filter/FilterInterface.php
Add interface and filters
[packbundle] / Twig / Filter / FilterInterface.php
1 <?php
2
3 // src/Rapsys/PackBundle/Twig/Filter/FilterInterface.php
4 namespace Rapsys\PackBundle\Twig\Filter;
5
6 interface FilterInterface {
7 //TODO: see if we need something else (like a constructor that read parameters or something else ?)
8 public function process($content);
9 }