@@ -92,14 +92,14 @@ |
||
| 92 | 92 | * |
| 93 | 93 | * @return mixed |
| 94 | 94 | */ |
| 95 | - protected function config($string, $children = []) |
|
| 95 | + protected function config($string, $children = [ ]) |
|
| 96 | 96 | { |
| 97 | 97 | if (is_null(config(static::CONFIG_PACKAGE_NAME))) { |
| 98 | 98 | throw new \Exception('Config not found'); |
| 99 | 99 | } |
| 100 | 100 | |
| 101 | 101 | return config( |
| 102 | - implode('.', array_merge([static::CONFIG_PACKAGE_NAME, $string], (array) $children)) |
|
| 102 | + implode('.', array_merge([ static::CONFIG_PACKAGE_NAME, $string ], (array) $children)) |
|
| 103 | 103 | ); |
| 104 | 104 | } |
| 105 | 105 | |