Total Complexity | 4 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
18 | abstract class EtlStreamAbstract extends EtlAbstract |
||
19 | { |
||
20 | use SlashPath; |
||
21 | |||
22 | /** |
||
23 | * @throws NodalFlowException |
||
24 | * @throws YaEtlException|ReflectionException |
||
25 | * |
||
26 | * @return $this |
||
27 | */ |
||
28 | public function run(): EtlAbstract |
||
29 | { |
||
30 | parent::run(); |
||
31 | |||
32 | return $this->releaseStreams(); |
||
33 | } |
||
34 | |||
35 | protected function releaseStreams(): EtlStreamAbstract |
||
45 | } |
||
46 | } |
||
47 |