Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
37 | public function locateFiles(array $bundles, string $environment): array |
||
38 | { |
||
39 | $fixtureFiles = array_flip($this->fixtureLocator->locateFiles($bundles, $environment)); |
||
40 | $fixtureFiles = $fixtureFiles + array_flip($this->fixtureLocator->locateFiles($bundles, '')); |
||
41 | |||
42 | return array_keys($fixtureFiles); |
||
43 | } |
||
44 | } |
||
45 |