Total Complexity | 6 |
Total Lines | 48 |
Duplicated Lines | 0 % |
Coverage | 95% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | trait TEntryLookup |
||
18 | { |
||
19 | use TTranslate; |
||
20 | |||
21 | /** |
||
22 | * @param array<string> $path |
||
23 | * @param ARecord|null $parentNode |
||
24 | * @throws MapperException |
||
25 | * @return ARecord|null |
||
26 | */ |
||
27 | 64 | protected function getEntry(array $path, ?ARecord $parentNode = null): ?ARecord |
|
62 | } |
||
63 | |||
64 | abstract protected function getLookupRecord(): ARecord; |
||
65 | } |
||
66 |