Completed
Pull Request — master (#359)
by
unknown
08:09
created
src/Generators/LaravelGenerator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
      */
48 48
     public function prepareMiddleware($enable = true)
49 49
     {
50
-        App::instance('middleware.disable', ! $enable);
50
+        App::instance('middleware.disable', !$enable);
51 51
     }
52 52
 
53 53
     /**
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
         $response = $kernel->handle($request);
80 80
 
81 81
         $kernel->terminate($request, $response);
82
-        if (file_exists($file = App::bootstrapPath().'/app.php')) {
82
+        if (file_exists($file = App::bootstrapPath() . '/app.php')) {
83 83
             $app = require $file;
84 84
             $app->make('Illuminate\Contracts\Console\Kernel')->bootstrap();
85 85
         }
Please login to merge, or discard this patch.