Total Complexity | 5 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
24 | class ConfigurableTestPlugin implements ConfigurableInterface |
||
25 | { |
||
26 | use PluginConfigurationTrait; |
||
27 | |||
28 | public function getEnv(): string |
||
29 | { |
||
30 | return $this->configuration()->getEnv(); |
||
31 | } |
||
32 | |||
33 | /** |
||
34 | * @return string[] |
||
35 | */ |
||
36 | public function getList(): array |
||
37 | { |
||
38 | return $this->configuration()->getList(); |
||
39 | } |
||
40 | |||
41 | public function getAlreadyList(): array |
||
42 | { |
||
43 | return $this->configuration()->getAlreadyList(); |
||
44 | } |
||
45 | |||
46 | public function getListWithoutSeparator(): array |
||
47 | { |
||
48 | return $this->configuration()->getListWithoutSeparator(); |
||
49 | } |
||
50 | |||
51 | public function getConfigRoutingKeyValue(): string |
||
54 | } |
||
55 | } |
||
56 |