Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 2 |
Lines | 0 |
Ratio | 0 % |
Tests | 3 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
17 | 1 | public function __construct( |
|
18 | MimeTypeGuesserInterface $mimeGuesser, |
||
19 | ExtensionGuesserInterface $extensionGuesser, |
||
20 | LocatorInterface $locator, |
||
21 | array $rootPaths = [] |
||
22 | ) |
||
23 | { |
||
24 | 1 | parent::__construct($mimeGuesser, $extensionGuesser, $locator, $rootPaths); |
|
25 | 1 | $this->rootPaths = $rootPaths; |
|
26 | 1 | } |
|
46 |