From fdb2d9320106926266a0f7a5a97aab7213e11ad6 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Thu, 24 Jan 2013 16:55:08 +0100 Subject: [PATCH] [Console] added some missing information in the phpdoc (closes #6464) --- Tester/ApplicationTester.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Tester/ApplicationTester.php b/Tester/ApplicationTester.php index 2c576aad0..3c863542b 100644 --- a/Tester/ApplicationTester.php +++ b/Tester/ApplicationTester.php @@ -20,6 +20,11 @@ /** * 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 */ class ApplicationTester