Skip to content

Commit a039ac7

Browse files
committed
Fix whitespace and unecessary cast
1 parent 8d689ed commit a039ac7

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/CompletionCommand.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ class CompletionCommand extends SymfonyCommand
1515
*/
1616
protected $handler;
1717

18-
1918
protected function configure()
2019
{
2120
$this
@@ -133,7 +132,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
133132
$output->write($results, true);
134133
}
135134

136-
return (int) SymfonyCommand::SUCCESS;
135+
return SymfonyCommand::SUCCESS;
137136
}
138137

139138
/**

0 commit comments

Comments
 (0)