Total Complexity | 3 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | class LegacyAdapterPropertyLookup implements PropertyLookup { |
||
16 | |||
17 | private EntityLookup $lookup; |
||
18 | |||
19 | public function __construct( EntityLookup $lookup ) { |
||
20 | $this->lookup = $lookup; |
||
21 | } |
||
22 | |||
23 | /** |
||
24 | * @param PropertyId $propertyId |
||
25 | * |
||
26 | * @return Property|null |
||
27 | * @throws PropertyLookupException |
||
28 | */ |
||
29 | public function getPropertyForId( PropertyId $propertyId ) { |
||
34 | } |
||
35 | } |
||
38 |