@@ -91,7 +91,7 @@ discard block |
||
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 | if (is_array($name)) { |
96 | 96 | throw new \Exception('Arrays not supported yet'); |
97 | 97 | } else { |
@@ -104,7 +104,7 @@ discard block |
||
104 | 104 | $this->writeFiles( |
105 | 105 | $files, |
106 | 106 | base_path(), |
107 | - (bool)$this->option('overwrite') |
|
107 | + (bool) $this->option('overwrite') |
|
108 | 108 | ); |
109 | 109 | $this->info('Finished scaffolding. You might want to run `composer dump-autoload`'); |
110 | 110 | } |