From d8c18cc3cdd4d7a62869f66243f760f96f616a52 Mon Sep 17 00:00:00 2001 From: Maxime STEINHAUSSER Date: Wed, 7 Dec 2016 12:55:24 +0100 Subject: [PATCH] [Console] Review Application docblocks --- src/Symfony/Component/Console/Application.php | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/Symfony/Component/Console/Application.php b/src/Symfony/Component/Console/Application.php index b11268ade3..a9400127e6 100644 --- a/src/Symfony/Component/Console/Application.php +++ b/src/Symfony/Component/Console/Application.php @@ -102,8 +102,6 @@ class Application * @param OutputInterface $output An Output instance * * @return int 0 if everything went fine, or an error code - * - * @throws \Exception When doRun returns Exception */ public function run(InputInterface $input = null, OutputInterface $output = null) { @@ -387,7 +385,7 @@ class Application * * @return Command A Command object * - * @throws \InvalidArgumentException When command name given does not exist + * @throws \InvalidArgumentException When given command name does not exist */ public function get($name) { @@ -831,8 +829,6 @@ class Application * @param OutputInterface $output An Output instance * * @return int 0 if everything went fine, or an error code - * - * @throws \Exception when the command being run threw an exception */ protected function doRunCommand(Command $command, InputInterface $input, OutputInterface $output) {