Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
18 | public function __construct( |
||
19 | false|UploadedFileInterface $value, |
||
20 | Ruleable $element, |
||
21 | int|string $thresholdSize, |
||
22 | ?string $message = null |
||
23 | ) { |
||
24 | $this->value = $value; |
||
25 | $this->element = $element; |
||
26 | $this->thresholdSize = $thresholdSize; |
||
27 | $this->message = $message; |
||
28 | } |
||
51 |