Skip to content

Commit b6b958c

Browse files
Remove the usage of constants as they are unavailable in older versions of Symfony Console.
1 parent b6d4fb6 commit b6b958c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Console/Command/ListCommand.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ protected function execute(InputInterface $input, OutputInterface $output)
5252
}
5353
} catch (ConfiguratorAdapterException $e) {
5454
$output->writeln('<error>' . $e->getMessage() . '</error>');
55-
return Command::FAILURE;
55+
return 1;
5656
}
57-
return Command::SUCCESS;
57+
return 0;
5858
}
5959
}

Console/Command/RunCommand.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,8 @@ protected function execute(InputInterface $input, OutputInterface $output)
105105
}
106106
} catch (\Exception $e) {
107107
$output->writeln('<error>' . $e->getMessage() . '</error>');
108-
return Command::FAILURE;
108+
return 1;
109109
}
110-
return Command::SUCCESS;
110+
return 0;
111111
}
112112
}

0 commit comments

Comments
 (0)