| 1 | <?php |
||
| 18 | class Engine implements QueryEngine { |
||
| 19 | |||
| 20 | private $matchFinder; |
||
| 21 | |||
| 22 | public function __construct( DescriptionMatchFinder $matchFinder ) { |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @see QueryEngine::getMatchingEntities |
||
| 28 | * |
||
| 29 | * @param Description $description |
||
| 30 | * @param QueryOptions $options |
||
| 31 | * |
||
| 32 | * @return EntityId[] |
||
| 33 | */ |
||
| 34 | public function getMatchingEntities( Description $description, QueryOptions $options ) { |
||
| 37 | |||
| 38 | } |
||
| 39 |