We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f638086 commit 05a0c47Copy full SHA for 05a0c47
src/CreateCommand.php
@@ -204,7 +204,7 @@ protected function handle(): int
204
205
$extraCommands = ["cd '$directory'"];
206
207
- if ($extraOptions['view'] ?? false && $extraOptions['view'] !== 'blade only') {
+ if (isset($extraOptions['view']) && $extraOptions['view'] !== 'blade only') {
208
$extraCommands[] = 'php leaf view:install --' . $extraOptions['view'];
209
}
210
0 commit comments