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