From c24f639d7f2aa02219bab2fb3bd42d54ce280647 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 I'm using the initialize() method for the first time and noticed, that input validation happens after this method, not before (see line #232 & #248) --- Command/Command.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Command/Command.php b/Command/Command.php index b70692fc6..866e4a221 100644 --- a/Command/Command.php +++ b/Command/Command.php @@ -181,7 +181,7 @@ protected function interact(InputInterface $input, OutputInterface $output) } /** - * Initializes the command just after the input has been validated. + * Initializes the command before the input has been 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.