| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | protected function getAssetTypes() : array |
||
| 17 | { |
||
| 18 | $installationManager = $this->getComposer()->getInstallationManager(); |
||
| 19 | $rootDir = dirname(Factory::getComposerFile()); |
||
| 20 | $assetBuilder = new AssetsBuilder($installationManager, $this->getIO(), $rootDir); |
||
| 21 | |||
| 22 | $localRepos = $this->getComposer()->getRepositoryManager()->getLocalRepository(); |
||
| 23 | return $assetBuilder->findAssetTypes($localRepos); |
||
| 24 | } |
||
| 25 | } |
||
| 26 |