1 | <?php |
||
21 | class SearchBounds implements JobInterface |
||
22 | { |
||
23 | |||
24 | /** |
||
25 | * Bound |
||
26 | * |
||
27 | * @var \Hal\Component\Bounds\BoundsInterface |
||
28 | */ |
||
29 | private $bound; |
||
30 | |||
31 | /** |
||
32 | * Output |
||
33 | * |
||
34 | * @var OutputInterface |
||
35 | */ |
||
36 | private $output; |
||
37 | |||
38 | /** |
||
39 | * Constructor |
||
40 | * @param OutputInterface $output |
||
41 | * @param BoundsInterface $bound |
||
42 | */ |
||
43 | public function __construct(OutputInterface $output, BoundsInterface $bound) |
||
48 | |||
49 | /** |
||
50 | * @inheritdoc |
||
51 | */ |
||
52 | public function execute(ResultCollection $collection, ResultCollection $groupedResults) |
||
56 | |||
57 | } |