| Total Complexity | 5 |
| Total Lines | 29 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 16 | final class RawIdentifierContext implements IdentifierContext |
||
| 17 | { |
||
| 18 | private string $namespace; |
||
| 19 | /** @var array<string, string> */ |
||
| 20 | private array $aliases; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * IdentifierContext constructor. |
||
| 24 | * @param string $namespace |
||
| 25 | * @param array<string, string> $aliases |
||
| 26 | */ |
||
| 27 | public function __construct(string $namespace, array $aliases) |
||
| 31 | } |
||
| 32 | |||
| 33 | public function getFqnFromContext(string $identifier): string |
||
| 47 |