Skip to content

Commit 6d646f2

Browse files
authored
Update InstallCommand.php
Fix implicit null
1 parent 37ea2d3 commit 6d646f2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Commands/InstallCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ protected function askUserToContinue(string $question = 'Do you want to continue
220220
return $continue;
221221
}
222222

223-
protected function askUserAQuestionWithDefault(string $question, string $default = null): ?string
223+
protected function askUserAQuestionWithDefault(string $question, ?string $default = null): ?string
224224
{
225225
$this->output->write($question);
226226
if ($default !== null) {

0 commit comments

Comments
 (0)