Total Complexity | 5 |
Total Lines | 38 |
Duplicated Lines | 0 % |
Coverage | 100% |
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 | 65 | protected function getEntry(array $path, ?ARecord $parentNode = null): ?ARecord |
|
52 | } |
||
53 | |||
54 | abstract protected function getLookupRecord(): ARecord; |
||
55 | } |
||
56 |