Total Complexity | 5 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
21 | class ConfigurableTestPluginConfiguration extends PluginConfiguration |
||
22 | { |
||
23 | public function getEnv(): string |
||
24 | { |
||
25 | return $this->configuration->get('APP_ENV', null, false); |
||
26 | } |
||
27 | |||
28 | public function getList(): array |
||
29 | { |
||
30 | $list = $this->configuration->get('ENV_LIST', null, false); |
||
31 | |||
32 | return $this->explodeStringToArray($list); |
||
33 | } |
||
34 | |||
35 | public function getAlreadyList(): array |
||
38 | } |
||
39 | |||
40 | public function getListWithoutSeparator(): array |
||
41 | { |
||
42 | return $this->explodeStringToArray($this->configuration->get('ENV_LIST', null, false), ''); |
||
43 | } |
||
44 | |||
45 | public function getRoutingKeyConfig(): ConfigurableTestPluginRoutingConfiguration |
||
48 | } |
||
49 | } |
||
50 |