diff --git a/src/Symfony/Component/Console/Command/Command.php b/src/Symfony/Component/Console/Command/Command.php index 7b5fc07cfe..9dbc9f40c6 100644 --- a/src/Symfony/Component/Console/Command/Command.php +++ b/src/Symfony/Component/Console/Command/Command.php @@ -29,6 +29,9 @@ use Symfony\Component\Console\Output\OutputInterface; */ class Command { + public const SUCCESS = 0; + public const FAILURE = 1; + /** * @var string|null The default command name */