| 1 | <?php |
||
| 22 | class StringReplace implements FilterInterface |
||
| 23 | { |
||
| 24 | protected $search; |
||
| 25 | protected $replacement; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * {@inheritDoc} |
||
| 29 | * |
||
| 30 | * @see \Mcustiel\SimpleRequest\Interfaces\Specificable::setSpecification() |
||
| 31 | */ |
||
| 32 | 5 | public function setSpecification($specification = null) |
|
| 37 | |||
| 38 | /** |
||
| 39 | * {@inheritDoc} |
||
| 40 | * |
||
| 41 | * @see \Mcustiel\SimpleRequest\Interfaces\FilterInterface::filter() |
||
| 42 | */ |
||
| 43 | 2 | public function filter($value) |
|
| 50 | } |
||
| 51 |