Total Complexity | 4 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
9 | trait InFieldset |
||
10 | { |
||
11 | /** |
||
12 | * This field is in a fieldset |
||
13 | * |
||
14 | * @var bool |
||
15 | */ |
||
16 | protected $inFieldSet = false; |
||
17 | |||
18 | |||
19 | /** |
||
20 | * This field is in a repeating fieldset |
||
21 | * |
||
22 | * @var bool |
||
23 | */ |
||
24 | protected $isRepeating = false; |
||
25 | |||
26 | protected function initInFieldset(): void |
||
37 | } |