1 | <?php |
||
8 | class SearchRepository extends AbstractRepository |
||
9 | { |
||
10 | |||
11 | /** |
||
12 | * Search for records or stories, returning only references to the matching entities. |
||
13 | * |
||
14 | * @param mixed[] $parameters Query parameters |
||
15 | * @return SearchResults object |
||
16 | * @throws RuntimeException |
||
17 | */ |
||
18 | public function search(array $parameters = array()) |
||
32 | } |
||
33 |