Total Complexity | 3 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
5 | class Config extends AbstractSystem |
||
6 | { |
||
7 | /** |
||
8 | * @var \BFW\Config $config The config object for BFW framework |
||
9 | */ |
||
10 | protected $config; |
||
11 | |||
12 | /** |
||
13 | * Define config object and load all config file used by the framework |
||
14 | */ |
||
15 | public function __construct() |
||
19 | } |
||
20 | |||
21 | /** |
||
22 | * {@inheritdoc} |
||
23 | * |
||
24 | * @return \BFW\Config |
||
25 | */ |
||
26 | public function __invoke() |
||
29 | } |
||
30 | |||
31 | /** |
||
32 | * Getter accessor to the property config |
||
33 | * |
||
34 | * @return \BFW\Config |
||
35 | */ |
||
36 | public function getConfig() |
||
41 |