| 1 | <?php |
||
| 22 | class AggregateExtractor extends AggregateNode |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * The underlying pseudo Flow |
||
| 26 | * |
||
| 27 | * @var YaEtl |
||
| 28 | */ |
||
| 29 | protected $payload; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * AggregateExtractor constructor. |
||
| 33 | * |
||
| 34 | * @param $isAReturningVal |
||
| 35 | * |
||
| 36 | * @throws NodalFlowException |
||
| 37 | */ |
||
| 38 | public function __construct($isAReturningVal) |
||
| 43 | |||
| 44 | /** |
||
| 45 | * @param TraversableNodeInterface $node |
||
| 46 | * |
||
| 47 | * @throws NodalFlowException |
||
| 48 | * @throws YaEtlException |
||
| 49 | * |
||
| 50 | * @return $this |
||
| 51 | */ |
||
| 52 | public function addTraversable(TraversableNodeInterface $node) |
||
| 62 | } |
||
| 63 |