1 | <?php |
||
5 | trait ConfigAwareTrait |
||
6 | { |
||
7 | /** |
||
8 | * @var ConfigInterface |
||
9 | */ |
||
10 | protected $config; |
||
11 | |||
12 | /** |
||
13 | * Set the config management object. |
||
14 | * |
||
15 | * @param ConfigInterface $config |
||
16 | * |
||
17 | * @return $this |
||
18 | */ |
||
19 | public function setConfig(ConfigInterface $config) |
||
25 | |||
26 | /** |
||
27 | * Get the config management object. |
||
28 | * |
||
29 | * @return ConfigInterface |
||
30 | */ |
||
31 | public function getConfig() |
||
35 | } |
||
36 |