Passed
Push — master ( 14e3bb...3d9bd4 )
by Bruno
09:36
created
Modelarium/Laravel/Console/Commands/ModelariumScaffoldCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
         $files = $processor->getCollection();
92 92
         if ($name && $name !== '*' && $name !== 'all') {
93 93
             $files = $files->filter(
94
-                function (GeneratedItem $g) use ($name) {
94
+                function(GeneratedItem $g) use ($name) {
95 95
                     return mb_stripos($g->filename, $name);
96 96
                 }
97 97
             );
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
         $this->writeFiles(
101 101
             $files,
102 102
             base_path(),
103
-            (bool)$this->option('overwrite')
103
+            (bool) $this->option('overwrite')
104 104
         );
105 105
         $this->info('Finished scaffolding. You might want to run `composer dump-autoload`');
106 106
     }
Please login to merge, or discard this patch.