| 1 | <?php |
||
| 8 | class RemoveFrontCharacters extends AbstractFilter implements FilterInterface |
||
| 9 | { |
||
| 10 | protected $punctuation; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @param array $punctuation Array of punctuation to be removed. |
||
| 14 | */ |
||
| 15 | public function __construct($punctuation = array('\'')) |
||
| 19 | |||
| 20 | /** {@inheritdoc} */ |
||
| 21 | public function filterWord($word) |
||
| 31 | } |