| Total Complexity | 4 | 
| Total Lines | 30 | 
| Duplicated Lines | 0 % | 
| Coverage | 92.86% | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 12 | final class SystemCheck implements UploadCheckInterface | ||
| 13 | { | ||
| 14 | |||
| 15 | |||
| 16 | private UploadedFileInterface|false $value; | ||
| 17 | private Ruleable $element; | ||
| 18 | private ?string $message; | ||
| 19 | |||
| 20 | 4 | public function __construct(false|UploadedFileInterface $value, Ruleable $element, string $message = null) | |
| 25 | } | ||
| 26 | |||
| 27 | 4 | public function check(): bool | |
| 44 |