Total Complexity | 4 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | final class SystemCheck implements UploadCheckInterface |
||
11 | { |
||
12 | private UploadedFileInterface|false $value; |
||
13 | private Ruleable $element; |
||
14 | private ?string $message; |
||
15 | |||
16 | 5 | public function __construct(false|UploadedFileInterface $value, Ruleable $element, string $message = null) |
|
21 | } |
||
22 | |||
23 | 5 | public function check(): bool |
|
40 |