Completed
Push — master ( b0f4a6...14bf24 )
by Antonio Carlos
11:19
created
src/Support/Config.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,14 +14,14 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.