1 | <?php |
||
8 | abstract class OfferFacilityResolver implements OfferFacilityResolverInterface |
||
9 | { |
||
10 | /** |
||
11 | * @var Facility[] |
||
12 | */ |
||
13 | private $facilities; |
||
14 | |||
15 | /** |
||
16 | * PlaceTypeResolver constructor. |
||
17 | */ |
||
18 | public function __construct() |
||
22 | |||
23 | /** |
||
24 | * @inheritdoc |
||
25 | */ |
||
26 | public function byId(StringLiteral $facilityId) |
||
34 | |||
35 | /** |
||
36 | * @return Facility[] |
||
37 | */ |
||
38 | abstract protected function getFacilities(); |
||
39 | } |
||
40 |