1 | <?php |
||
18 | class DirectoryAggregatorFlat implements Aggregator { |
||
19 | |||
20 | /** |
||
21 | * Max depth |
||
22 | * |
||
23 | * @var int |
||
24 | */ |
||
25 | private $depth; |
||
26 | |||
27 | /** |
||
28 | * Constructor |
||
29 | * |
||
30 | * @param $depth |
||
31 | */ |
||
32 | public function __construct($depth) |
||
36 | |||
37 | |||
38 | /** |
||
39 | * @inheritdoc |
||
40 | */ |
||
41 | public function aggregates(ResultCollection $results) { |
||
68 | } |