| 1 | <?php |
||
| 22 | class Capitalize implements FilterInterface |
||
| 23 | { |
||
| 24 | private $allWords = false; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * {@inheritDoc} |
||
| 28 | * |
||
| 29 | * @see \Mcustiel\SimpleRequest\Interfaces\Specificable::setSpecification() |
||
| 30 | */ |
||
| 31 | 3 | public function setSpecification($specification = null) |
|
| 35 | |||
| 36 | /** |
||
| 37 | * {@inheritDoc} |
||
| 38 | * |
||
| 39 | * @see \Mcustiel\SimpleRequest\Interfaces\FilterInterface::filter() |
||
| 40 | */ |
||
| 41 | 4 | public function filter($value) |
|
| 48 | } |
||
| 49 |