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