Passed
Push — master ( 3bbca7...1bf3da )
by Denis
03:34 queued 45s
created
src/Console/ConsoleMakeService.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
     protected function getArguments()
68 68
     {
69 69
         return [
70
-            ['name', InputArgument::REQUIRED, 'The name of the service'],
70
+            [ 'name', InputArgument::REQUIRED, 'The name of the service' ],
71 71
         ];
72 72
     }
73 73
 
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
     protected function getOptions()
80 80
     {
81 81
         return [
82
-            ['static', 's', InputOption::VALUE_NONE, 'Generate a static service.'],
82
+            [ 'static', 's', InputOption::VALUE_NONE, 'Generate a static service.' ],
83 83
         ];
84 84
     }
85 85
 }
Please login to merge, or discard this patch.
src/Console/InstallCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
             return;
55 55
         }
56 56
 
57
-        if (!file_exists(app_path('Providers/'.self::PROVIDER_NAME.'.php'))) {
57
+        if ( ! file_exists(app_path('Providers/'.self::PROVIDER_NAME.'.php'))) {
58 58
             throw new \Exception(self::PROVIDER_NAME.' not published.');
59 59
         }
60 60
 
Please login to merge, or discard this patch.