1 | <?php |
||
5 | class Composite extends AbstractAggregation |
||
6 | { |
||
7 | /** |
||
8 | * @return $this |
||
9 | */ |
||
10 | public function setSize(int $size): self |
||
14 | |||
15 | /** |
||
16 | * @return $this |
||
17 | */ |
||
18 | public function addSource(AbstractAggregation $aggregation): self |
||
22 | |||
23 | /** |
||
24 | * @return $this |
||
25 | */ |
||
26 | public function addAfter(?array $checkpoint): self |
||
30 | } |
||
31 |