1 | <?php |
||
12 | class FinderSearchingContext extends AbstractSearchingContext |
||
13 | { |
||
14 | /** |
||
15 | * @param $finder Finder |
||
16 | */ |
||
17 | 1 | public function __construct(Finder $finder) |
|
21 | |||
22 | /** |
||
23 | * @return Finder |
||
24 | */ |
||
25 | 4 | public function getQueryBuilder() |
|
29 | |||
30 | /** |
||
31 | * @return \Iterator |
||
32 | */ |
||
33 | 2 | public function getResults() |
|
37 | |||
38 | /** |
||
39 | * @return FinderSearchingContext |
||
40 | */ |
||
41 | 1 | public static function buildDefault() |
|
45 | } |
||
46 |