@@ -14,14 +14,14 @@ |
||
14 | 14 | * |
15 | 15 | * @return mixed |
16 | 16 | */ |
17 | - protected function config($string, $children = []) |
|
17 | + protected function config($string, $children = [ ]) |
|
18 | 18 | { |
19 | 19 | if (is_null(config($config = Constants::CONFIG_PACKAGE_NAME))) { |
20 | 20 | throw new \Exception("Config ({$config}.php) not found. Have you published it?"); |
21 | 21 | } |
22 | 22 | |
23 | 23 | return config( |
24 | - implode('.', array_merge([Constants::CONFIG_PACKAGE_NAME, $string], (array) $children)) |
|
24 | + implode('.', array_merge([ Constants::CONFIG_PACKAGE_NAME, $string ], (array) $children)) |
|
25 | 25 | ); |
26 | 26 | } |
27 | 27 | } |