From ec12f6c12be18c0cfe79df6f81d6d9c76dc94aa7 Mon Sep 17 00:00:00 2001 From: Michael Piecko Date: Thu, 22 Jan 2015 13:41:44 +0100 Subject: [PATCH] [Console] fixed typo in phpdoc --- 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 4b8eaea64e666..2b0d0d8495355 100644 --- a/src/Symfony/Component/Console/Command/Command.php +++ b/src/Symfony/Component/Console/Command/Command.php @@ -160,7 +160,7 @@ protected function interact(InputInterface $input, OutputInterface $output) } /** - * Initializes the command just after the input has been validated. + * Initializes the command 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.