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