| Total Complexity | 2 |
| Total Lines | 13 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | trait ConfigurableEnvironmentTrait |
||
| 10 | { |
||
| 11 | /** @var ConfigurationInterface */ |
||
| 12 | private $configuration; |
||
| 13 | |||
| 14 | public function getConfiguration(): ConfigurationInterface |
||
| 15 | { |
||
| 16 | return $this->configuration; |
||
| 17 | } |
||
| 18 | |||
| 19 | public function setConfiguration(ConfigurationInterface $configuration): void |
||
| 22 | } |
||
| 23 | } |
||
| 24 |