| Total Complexity | 2 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 19 | abstract class AbstractValidator implements ValidatorInterface |
||
| 20 | { |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Method validates that $_FILES[$field] exists. |
||
| 24 | * If it does not then exception will be thrown |
||
| 25 | * |
||
| 26 | * @param string $field |
||
| 27 | * field name |
||
| 28 | */ |
||
| 29 | public function validateFilesFieldExists(string $field): void |
||
| 35 | } |