| Total Complexity | 4 |
| Total Lines | 37 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | final class StaticClassMapSourceLocator extends AbstractSourceLocator |
||
| 17 | { |
||
| 18 | /** @var string[] */ |
||
| 19 | private $classMap; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @param array<string, string> $classMap map of class => file. Every file must exist, |
||
| 23 | * every key must be non-empty |
||
| 24 | */ |
||
| 25 | public function __construct( |
||
| 38 | } |
||
| 39 | |||
| 40 | protected function createLocatedSource(Identifier $identifier) : ?LocatedSource |
||
| 55 |