1 | <?php |
||
24 | class EngineFinder extends AbstractFinder |
||
25 | { |
||
26 | |||
27 | /** |
||
28 | * Find a result based on a specific criteria. |
||
29 | * |
||
30 | * @since 0.1.0 |
||
31 | * |
||
32 | * @param array $criteria Criteria to search for. |
||
33 | * |
||
34 | * @return EngineInterface Result of the search. |
||
35 | */ |
||
36 | 18 | public function find(array $criteria) |
|
50 | |||
51 | /** |
||
52 | * Get the config key for the Findables definitions. |
||
53 | * |
||
54 | * @since 0.1.0 |
||
55 | * |
||
56 | * @return string Config key use to define the Findables. |
||
57 | */ |
||
58 | 8 | protected function getFindablesConfigKey() |
|
62 | } |
||
63 |