Total Complexity | 2 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
6 | final class SearchPropertyNameResolverRegistry implements SearchPropertyNameResolverRegistryInterface |
||
7 | { |
||
8 | /** |
||
9 | * @var ConcatedNameResolverInterface[] |
||
10 | */ |
||
11 | private $propertyNameResolvers = []; |
||
12 | |||
13 | /** |
||
14 | * @param ConcatedNameResolverInterface $propertyNameResolver |
||
15 | */ |
||
16 | public function addPropertyNameResolver(ConcatedNameResolverInterface $propertyNameResolver): void |
||
19 | } |
||
20 | |||
21 | /** |
||
22 | * @return ConcatedNameResolverInterface[] |
||
23 | */ |
||
24 | public function getPropertyNameResolvers(): array |
||
29 |