1 | <?php |
||
9 | trait HasConfigurationTrait |
||
10 | { |
||
11 | /** |
||
12 | * @var null|Configuration |
||
13 | */ |
||
14 | protected $configuration = null; |
||
15 | |||
16 | /** |
||
17 | * @return Configuration |
||
18 | */ |
||
19 | 6 | public function getConfiguration() |
|
26 | |||
27 | /** |
||
28 | * @param Configuration $configuration |
||
29 | */ |
||
30 | public function setConfiguration(Configuration $configuration): void |
||
34 | |||
35 | |||
36 | 1 | public function initConfiguration() |
|
40 | } |
||
41 |