From b18f6f557b5db1e2e6d2c2c0494e0564b91f438d Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Tue, 10 Jul 2012 15:28:02 +0200 Subject: [PATCH] [Console] fixed wrong phpdoc (closes #4394) --- src/Symfony/Component/Console/Command/Command.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Console/Command/Command.php b/src/Symfony/Component/Console/Command/Command.php index bec2313b3e..cc586b8e50 100644 --- a/src/Symfony/Component/Console/Command/Command.php +++ b/src/Symfony/Component/Console/Command/Command.php @@ -165,7 +165,7 @@ class Command } /** - * Initializes the command just after the input has been validated. + * Initializes the command just before the input is validated. * * This is mainly useful when a lot of commands extends one main command * where some things need to be initialized based on the input arguments and options.