Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
68 | public function make() |
||
69 | { |
||
70 | $view = include $this->config_path.'views.php'; |
||
71 | $app = include $this->config_path.'app.php'; |
||
72 | $database = include $this->config_path.'database.php'; |
||
73 | $mail = include $this->config_path.'mail.php'; |
||
74 | $this->config_array['views'] = $view; |
||
75 | $this->config_array['app'] = $app; |
||
76 | $this->config_array['database'] = $database; |
||
77 | $this->config_array['mail'] = $mail; |
||
78 | |||
79 | return $this->config_array; |
||
80 | } |
||
81 | } |
||
82 |