Total Complexity | 2 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | trait IsCompositeSelectionFieldTrait |
||
8 | { |
||
9 | use IsSelectionFieldTrait; |
||
10 | |||
11 | /** |
||
12 | * @var CompositeFieldSelectionProviderInterface |
||
13 | */ |
||
14 | protected $selectionProvider; |
||
15 | |||
16 | /** |
||
17 | * |
||
18 | */ |
||
19 | protected function defineSelectionLabel($selection) |
||
20 | { |
||
21 | return $this->selectionProvider->defineSelectionLabel($selection); |
||
22 | } |
||
23 | |||
24 | /** |
||
25 | * |
||
26 | */ |
||
27 | protected function defineSelectionId($selection) |
||
30 | } |
||
31 | } |
||
32 |