Skip to content

Commit d81a398

Browse files
committed
Fix CS
1 parent 1c6e909 commit d81a398

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

Command/Command.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -518,7 +518,7 @@ public function getName()
518518
*
519519
* @final since Symfony 5.1
520520
*/
521-
public function setHidden(bool $hidden /*= true*/)
521+
public function setHidden(bool $hidden /* = true */)
522522
{
523523
$this->hidden = $hidden;
524524

Command/CompleteCommand.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,15 +65,15 @@ protected function execute(InputInterface $input, OutputInterface $output): int
6565
{
6666
try {
6767
// uncomment when a bugfix or BC break has been introduced in the shell completion scripts
68-
//$version = $input->getOption('symfony');
69-
//if ($version && version_compare($version, 'x.y', '>=')) {
68+
// $version = $input->getOption('symfony');
69+
// if ($version && version_compare($version, 'x.y', '>=')) {
7070
// $message = sprintf('Completion script version is not supported ("%s" given, ">=x.y" required).', $version);
7171
// $this->log($message);
7272

7373
// $output->writeln($message.' Install the Symfony completion script again by using the "completion" command.');
7474

7575
// return 126;
76-
//}
76+
// }
7777

7878
$shell = $input->getOption('shell');
7979
if (!$shell) {

Helper/QuestionHelper.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
use Symfony\Component\Console\Question\ChoiceQuestion;
2525
use Symfony\Component\Console\Question\Question;
2626
use Symfony\Component\Console\Terminal;
27+
2728
use function Symfony\Component\String\s;
2829

2930
/**

0 commit comments

Comments
 (0)