Completed
Pull Request — master (#1)
by Antonio Carlos
02:11
created
src/Authenticator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -92,14 +92,14 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.