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