Completed
Push — master ( 506b6d...becb2b )
by Sergi Tur
07:19
created
src/Providers/AdminLTETemplateServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -26,10 +26,10 @@  discard block
 block discarded – undo
26 26
         }
27 27
 
28 28
         if ($this->app->runningInConsole()) {
29
-            $this->commands([\Acacha\AdminLTETemplateLaravel\Console\PublishAdminLTE::class]);
29
+            $this->commands([ \Acacha\AdminLTETemplateLaravel\Console\PublishAdminLTE::class ]);
30 30
         }
31 31
 
32
-        $this->app->bind('AdminLTE', function () {
32
+        $this->app->bind('AdminLTE', function() {
33 33
             return new \Acacha\AdminLTETemplateLaravel\AdminLTE();
34 34
         });
35 35
 
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
         if (!$this->app->routesAreCached()) {
66 66
             $router = app('router');
67 67
 
68
-            $router->group(['namespace' => $this->getAppNamespace().'Http\Controllers'], function () {
68
+            $router->group([ 'namespace' => $this->getAppNamespace().'Http\Controllers' ], function() {
69 69
                 require __DIR__.'/../Http/routes.php';
70 70
             });
71 71
         }
Please login to merge, or discard this patch.