From 7489a146569c8b0cd49d088ffeaef1e38b0497fd Mon Sep 17 00:00:00 2001 From: Dany Maillard Date: Thu, 13 Apr 2017 00:18:28 +0200 Subject: [PATCH] Add @throws phpdoc --- src/Symfony/Component/Console/Command/Command.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Symfony/Component/Console/Command/Command.php b/src/Symfony/Component/Console/Command/Command.php index ff4075962e..6b91e548e6 100644 --- a/src/Symfony/Component/Console/Command/Command.php +++ b/src/Symfony/Component/Console/Command/Command.php @@ -202,6 +202,8 @@ class Command * * @return int The command exit code * + * @throws \Exception When binding input fails. Bypass this by calling {@link ignoreValidationErrors()}. + * * @see setCode() * @see execute() */