1 | <?php |
||
14 | final class NeighborhoodService |
||
15 | { |
||
16 | /** |
||
17 | * @var RequestToArrayTransformer |
||
18 | */ |
||
19 | private $transformer; |
||
20 | |||
21 | /** |
||
22 | * @var FilterRepository |
||
23 | */ |
||
24 | private $repository; |
||
25 | |||
26 | public function __construct(RequestToArrayTransformer $transformer, FilterRepository $repository) |
||
31 | |||
32 | public function getSearchParams(Request $request, Neighborhood $neighborhood): array |
||
39 | |||
40 | public function getProperties(array $searchParams): PaginationInterface |
||
44 | |||
45 | public function decorateOptions(array $siteOptions, Neighborhood $neighborhood): array |
||
51 | } |
||
52 |