| Total Complexity | 2 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | class NoWhitespaceRule extends AbstractRule |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @var string error template |
||
| 23 | */ |
||
| 24 | protected $description = 'must not contain whitespace'; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Check input data |
||
| 28 | * |
||
| 29 | * @param string $input |
||
| 30 | * |
||
| 31 | * @return bool |
||
| 32 | */ |
||
| 33 | 11 | public function validate($input): bool |
|
| 38 |