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) {