@@ -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 | return mb_stripos($g->filename, $name); |
| 96 | 96 | } |
| 97 | 97 | ); |
@@ -100,7 +100,7 @@ discard block |
||
| 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 | } |