Total Complexity | 4 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
9 | trait HasConfigurationTrait |
||
10 | { |
||
11 | /** |
||
12 | * @var null|Configuration |
||
13 | */ |
||
14 | protected $configuration = null; |
||
15 | |||
16 | /** |
||
17 | * @return Configuration |
||
18 | */ |
||
19 | public function getConfiguration() |
||
25 | } |
||
26 | |||
27 | /** |
||
28 | * @param Configuration $configuration |
||
29 | */ |
||
30 | public function setConfiguration(Configuration $configuration): void |
||
31 | { |
||
32 | $this->configuration = $configuration; |
||
33 | } |
||
34 | |||
35 | |||
36 | public function initConfiguration() |
||
39 | } |
||
40 | } |
||
41 |