8000 Fixed typo in phpdoc by mpiecko · Pull Request #15 · symfony/console · GitHub
[go: up one dir, main page]

Skip to content

Fixed typo in phpdoc #15

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
[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)
  • Loading branch information
mpiecko committed Jan 22, 2015
commit c24f639d7f2aa02219bab2fb3bd42d54ce280647
2 changes: 1 addition & 1 deletion Command/Command.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
0