Total Complexity | 1 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
9 | trait ConfigTrait |
||
10 | { |
||
11 | /** |
||
12 | * Config |
||
13 | * |
||
14 | * @var array contains configuration variables |
||
15 | */ |
||
16 | protected $config; |
||
17 | |||
18 | /** |
||
19 | * Set config |
||
20 | * |
||
21 | * @param array $config contains configuration variables |
||
22 | * |
||
23 | * @return void |
||
24 | */ |
||
25 | 53 | public function setConfig(array $config): void |
|
30 |