| 1 | <?php |
||
| 24 | class BaseEngineFinder 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 Engine Result of the search. |
||
| 35 | */ |
||
| 36 | 30 | 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 | 16 | protected function getFindablesConfigKey() |
|
| 62 | } |
||
| 63 |