| Total Complexity | 4 |
| Total Lines | 34 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | class ComposerClassMap implements FqcnFinderInterface |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @var string The path to your composer 'vendor/autoload.php' |
||
| 18 | */ |
||
| 19 | protected $composerAutoloadPath; |
||
| 20 | |||
| 21 | public function __construct(string $composerAutoloadPath) |
||
| 22 | { |
||
| 23 | $this->composerAutoloadPath = $composerAutoloadPath; |
||
| 24 | } |
||
| 25 | |||
| 26 | public function find(): array |
||
| 48 | } |
||
| 49 | } |
||
| 50 |