1 | <?php |
||
13 | class SearchService implements SearchServiceInterface |
||
14 | { |
||
15 | /** @var Symfony\Component\EventDispatcher\EventDispatcherInterface */ |
||
16 | protected $eventDispatcher; |
||
17 | |||
18 | public function __construct(SearchServiceInterface $innerService, EventDispatcherInterface $eventDispatcher) |
||
24 | |||
25 | public function findContent(Query $query, array $languageFilter = [], $filterOnUserPermissions = true) |
||
29 | |||
30 | public function findContentInfo(Query $query, array $languageFilter = [], $filterOnUserPermissions = true) |
||
34 | |||
35 | public function findSingle(Criterion $filter, array $languageFilter = [], $filterOnUserPermissions = true) |
||
39 | |||
40 | public function suggest($prefix, $fieldPaths = [], $limit = 10, Criterion $filter = null) |
||
44 | |||
45 | public function findLocations(LocationQuery $query, array $languageFilter = [], $filterOnUserPermissions = true) |
||
49 | |||
50 | public function supports($capabilityFlag) |
||
54 | } |
||
55 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.