Total Complexity | 2 |
Total Lines | 13 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
7 | trait SelectionFieldTrait |
||
8 | { |
||
9 | protected function getSelectionData(): array |
||
10 | { |
||
11 | return $this->getSelectionProvider()->provideSelectionsData(); |
||
12 | } |
||
13 | |||
14 | protected function defineSelectionValue($selection): string |
||
17 | } |
||
18 | |||
19 | abstract protected function getSelectionProvider(): SelectionProviderInterface; |
||
20 | } |
||
21 |