Conditions | 3 |
Paths | 3 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
19 | public function classToFileCandidates(ClassName $className): FilePathCandidates |
||
20 | { |
||
21 | $paths = []; |
||
22 | foreach ($this->converters as $converter) { |
||
23 | foreach ($converter->classToFileCandidates($className) as $candidate) { |
||
24 | $paths[] = $candidate; |
||
25 | } |
||
26 | } |
||
27 | |||
28 | return FilePathCandidates::fromFilePaths($paths); |
||
29 | } |
||
30 | |||
36 |