[Console] fixed phpdoc

This commit is contained in:
Fabien Potencier 2010-07-01 19:38:34 +02:00
parent 99952c6042
commit 108e28429a
2 changed files with 3 additions and 3 deletions

View File

@ -530,7 +530,7 @@ class Application
/**
* Returns an array of possible abbreviations given a set of names.
*
* @param array An array of names
* @param array $names An array of names
*
* @return array An array of abbreviations
*/

View File

@ -29,7 +29,7 @@ class DialogHelper extends Helper
* @param string|array $question The question to ask
* @param string $default The default answer if none is given by the user
*
* @param string The user answer
* @return string The user answer
*/
public function ask(OutputInterface $output, $question, $default = null)
{
@ -51,7 +51,7 @@ class DialogHelper extends Helper
* @param string|array $question The question to ask
* @param Boolean $default The default answer if the user enters nothing
*
* @param Boolean true if the user has confirmed, false otherwise
* @return Boolean true if the user has confirmed, false otherwise
*/
public function askConfirmation(OutputInterface $output, $question, $default = true)
{