Total Complexity | 2 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
12 | abstract class BaseGroupOperator extends BaseOperator |
||
13 | { |
||
14 | /** |
||
15 | * Expression configuration |
||
16 | * |
||
17 | * @var array |
||
18 | */ |
||
19 | protected $config = []; |
||
20 | |||
21 | /** |
||
22 | * List of instanced operators |
||
23 | * |
||
24 | * @var Operator[] |
||
25 | */ |
||
26 | protected $operators = []; |
||
27 | |||
28 | /** |
||
29 | * @inheritDoc |
||
30 | */ |
||
31 | 31 | public function configure(array $config) |
|
40 | } |
||
41 | } |