Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
32 | public function resolve(): FileMappingReaderInterface |
||
33 | { |
||
34 | $files = [ |
||
35 | __DIR__ . '/../templates/mapping/files', |
||
36 | sprintf( |
||
37 | __DIR__ . '/../templates/mapping/project/%s', |
||
38 | $this->typeResolver->resolve() |
||
39 | ) |
||
40 | ]; |
||
41 | |||
42 | return new UnixFileMappingReader( |
||
43 | __DIR__ . '/../templates/files', |
||
44 | getcwd(), |
||
45 | ...$files |
||
46 | ); |
||
49 |