Total Complexity | 2 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class ParallelBuilder extends Fluent |
||
11 | { |
||
12 | private $builder; |
||
13 | |||
14 | public function __construct(CreateFunctionBuilder $builder, $attributes = []) |
||
15 | { |
||
16 | $this->builder = $builder; |
||
17 | |||
18 | parent::__construct($attributes); |
||
19 | } |
||
20 | |||
21 | public function __call($method, $parameters) |
||
26 | } |
||
27 | } |
||
28 |