Conditions | 4 |
Paths | 4 |
Total Lines | 25 |
Code Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 1 | Features | 1 |
1 | <?php |
||
32 | $content = \safe\file_get_contents($this->fileSystemPathComposerJson); |
||
33 | |||
34 | $data = \safe\json_decode($content, true); |
||
35 | |||
36 | $this->psr4Ns = $data['autoload']['psr-4']; |
||
37 | } |
||
38 | |||
39 | /** @return array<string> */ |
||
40 | public function getPsr4Ns(): array |
||
41 | { |
||
42 | return $this->psr4Ns; |
||
43 | } |
||
44 | } |
||
45 |