Skip to content

Commit 16b4483

Browse files
committed
Apply fixes from StyleCI
1 parent 4c496f7 commit 16b4483

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

src/Console/PerimeterMakeCommand.php

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
use Symfony\Component\Console\Input\InputInterface;
88
use Symfony\Component\Console\Input\InputOption;
99
use Symfony\Component\Console\Output\OutputInterface;
10+
1011
use function Laravel\Prompts\confirm;
1112

1213
#[AsCommand(name: 'make:perimeter')]
@@ -119,12 +120,12 @@ protected function getOptions()
119120
*/
120121
protected function afterPromptingForMissingArguments(InputInterface $input, OutputInterface $output)
121122
{
122-
if ($this->didReceiveOptions($input)) {
123-
return;
124-
}
123+
if ($this->didReceiveOptions($input)) {
124+
return;
125+
}
125126

126-
if (confirm('Should this perimeter be an overlay?', false)) {
127-
$input->setOption('overlay', true);
128-
}
127+
if (confirm('Should this perimeter be an overlay?', false)) {
128+
$input->setOption('overlay', true);
129+
}
129130
}
130131
}

0 commit comments

Comments
 (0)