Completed
Push — master ( c08f71...11e64b )
by Sherif
02:02
created
src/Modules/Reporting/Providers/ModuleServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
 
19 19
         $this->loadMigrationsFrom(module_path('reporting', 'Database/Migrations', 'app'));
20 20
         $this->loadFactoriesFrom(module_path('reporting', 'Database/Factories', 'app'));
21
-        if(!$this->app->configurationIsCached()) {
21
+        if ( ! $this->app->configurationIsCached()) {
22 22
             $this->loadConfigsFrom(module_path('reporting', 'Config', 'app'));
23 23
         }
24 24
     }
Please login to merge, or discard this patch.
files/Handler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
                 return \Response::json(['errors' => [$errors]], $e->getStatusCode());
66 66
             } elseif ($e instanceof \Illuminate\Validation\ValidationException) {
67 67
                 return \Response::json(['errors' => $e->errors()], 422);
68
-            } elseif (! $e instanceof \Symfony\Component\ErrorHandler\Error\FatalError) {
68
+            } elseif ( ! $e instanceof \Symfony\Component\ErrorHandler\Error\FatalError) {
69 69
                 return parent::render($request, $e);
70 70
             }
71 71
         }
Please login to merge, or discard this patch.