[Console] added some missing information in the phpdoc (closes #6464)

This commit is contained in:
Fabien Potencier 2013-01-24 16:55:08 +01:00
parent 3196dbdf52
commit e3086cccf8

View File

@ -20,6 +20,11 @@ use Symfony\Component\Console\Output\StreamOutput;
/**
* Eases the testing of console applications.
*
* When testing an application, don't forget to disable the auto exit flag:
*
* $application = new Application();
* $application->setAutoExit(false);
*
* @author Fabien Potencier <fabien@symfony.com>
*/
class ApplicationTester