Skip to content

Commit 38a131d

Browse files
committed
feat: call method with additional parameter
refs: #17
1 parent f5aef19 commit 38a131d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Commands/InitCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@ protected function prepareAppName(): void
367367

368368
$pascalCaseAppName = ucfirst(Str::camel($this->appName));
369369

370-
if ($this->appName !== $pascalCaseAppName && $this->confirm("The application name is not in PascalCase, would you like to use {$pascalCaseAppName}")) {
370+
if ($this->appName !== $pascalCaseAppName && $this->confirm("The application name is not in PascalCase, would you like to use {$pascalCaseAppName}", true)) {
371371
$this->appName = $pascalCaseAppName;
372372
}
373373
}

0 commit comments

Comments
 (0)