Skip to content

Commit c640bd2

Browse files
Reduce meaningless intermediate variables (#56288)
1 parent 4135a80 commit c640bd2

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/Illuminate/Foundation/Console/BroadcastingInstallCommand.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -367,9 +367,7 @@ protected function installReverb()
367367
return;
368368
}
369369

370-
$install = confirm('Would you like to install Laravel Reverb?', default: true);
371-
372-
if (! $install) {
370+
if (! confirm('Would you like to install Laravel Reverb?', default: true)) {
373371
return;
374372
}
375373

0 commit comments

Comments
 (0)