1 | <?php |
||
13 | class Sapi3UserPermissionMatcher implements UserPermissionMatcherInterface |
||
14 | { |
||
15 | /** |
||
16 | * @var UserConstraintsReadRepositoryInterface |
||
17 | */ |
||
18 | private $userConstraintsReadRepository; |
||
19 | |||
20 | /** |
||
21 | * @var SearchQueryFactoryInterface |
||
22 | */ |
||
23 | private $searchQueryFactory; |
||
24 | |||
25 | /** |
||
26 | * @var SearchServiceInterface |
||
27 | */ |
||
28 | private $searchService; |
||
29 | |||
30 | /** |
||
31 | * ConstraintsOfferFilter constructor. |
||
32 | * @param UserConstraintsReadRepositoryInterface $userConstraintsReadRepository |
||
33 | * @param SearchQueryFactoryInterface $searchQueryFactory |
||
34 | * @param SearchServiceInterface $searchService |
||
35 | */ |
||
36 | public function __construct( |
||
45 | |||
46 | /** |
||
47 | * @inheritdoc |
||
48 | */ |
||
49 | public function itMatchesOffer( |
||
71 | } |
||
72 |