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 |
||
17 | 7 | public function __construct( |
|
18 | false|UploadedFileInterface $value, |
||
19 | Ruleable $element, |
||
20 | string $expectedExtensions, |
||
21 | ?string $message = null |
||
22 | ) { |
||
23 | 7 | $this->value = $value; |
|
24 | 7 | $this->element = $element; |
|
25 | 7 | $this->expectedExtensions = \array_map('trim', \explode(",", \strtolower($expectedExtensions))); |
|
26 | 7 | $this->message = $message; |
|
27 | } |
||
48 |