| 1 | <?php |
||
| 18 | class AlphaNumericRule extends AbstractCtypeRule |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * Check for alphanumeric character(s) |
||
| 22 | * |
||
| 23 | * @param string $input |
||
| 24 | * |
||
| 25 | * @return bool |
||
| 26 | */ |
||
| 27 | 22 | protected function validateClean($input) : bool |
|
| 31 | |||
| 32 | /** |
||
| 33 | * Get error template |
||
| 34 | * |
||
| 35 | * @return string |
||
| 36 | */ |
||
| 37 | 25 | public function getDescription() : string |
|
| 44 | } |
||
| 45 |