| 1 | <?php |
||
| 20 | class LowercaseFirst extends AbstractCharCase |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * |
||
| 24 | * Sanitizes a string to begin with lowercase. |
||
| 25 | * |
||
| 26 | * @param object $subject The subject to be filtered. |
||
| 27 | * |
||
| 28 | * @param string $field The subject field name. |
||
| 29 | * |
||
| 30 | * @return bool True if the value was sanitized, false if not. |
||
| 31 | * |
||
| 32 | */ |
||
| 33 | 8 | public function __invoke($subject, $field) |
|
| 42 | } |
||
| 43 |