Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
23 | public function __construct( |
||
24 | string $uploadDir, |
||
25 | string $fileTypeDir, |
||
26 | array $allowTypes, |
||
27 | array $extensions, |
||
28 | bool $monthYearPath = true |
||
29 | ) { |
||
30 | parent::__construct($uploadDir, $fileTypeDir, $monthYearPath); |
||
31 | self::$allowTypes = $allowTypes; |
||
32 | self::$extensions = $extensions; |
||
33 | } |
||
53 | } |