[Console] Review Application docblocks

This commit is contained in:
Maxime STEINHAUSSER 2016-12-07 12:55:24 +01:00 committed by Fabien Potencier
parent c360a222ef
commit d8c18cc3cd
1 changed files with 1 additions and 5 deletions

View File

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