| 1 | <?php |
||
| 5 | class CombinedStringFilter implements StringFilterInterface |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * @var StringFilterInterface[] |
||
| 9 | */ |
||
| 10 | protected $filters = array(); |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @param StringFilterInterface $filter |
||
| 14 | */ |
||
| 15 | public function addFilter($filter) |
||
| 19 | |||
| 20 | /** |
||
| 21 | * {@inheritdoc} |
||
| 22 | */ |
||
| 23 | public function filter($string) |
||
| 31 | } |
||
| 32 |