[Console] fix phpdoc and constructor default value

This commit is contained in:
Tobias Schultze 2013-11-08 01:49:34 +01:00
parent 99f3b3fefe
commit fa4075e6d1
4 changed files with 9 additions and 9 deletions

View File

@ -49,7 +49,7 @@ class OutputFormatter implements OutputFormatterInterface
*
* @api
*/
public function __construct($decorated = null, array $styles = array())
public function __construct($decorated = false, array $styles = array())
{
$this->decorated = (Boolean) $decorated;

View File

@ -55,9 +55,9 @@ class OutputFormatterStyle implements OutputFormatterStyleInterface
/**
* Initializes output formatter style.
*
* @param string $foreground The style foreground color name
* @param string $background The style background color name
* @param array $options The style options
* @param string|null $foreground The style foreground color name
* @param string|null $background The style background color name
* @param array $options The style options
*
* @api
*/
@ -77,7 +77,7 @@ class OutputFormatterStyle implements OutputFormatterStyleInterface
/**
* Sets style foreground color.
*
* @param string $color The color name
* @param string|null $color The color name
*
* @throws \InvalidArgumentException When the color name isn't defined
*
@ -105,7 +105,7 @@ class OutputFormatterStyle implements OutputFormatterStyleInterface
/**
* Sets style background color.
*
* @param string $color The color name
* @param string|null $color The color name
*
* @throws \InvalidArgumentException When the color name isn't defined
*

View File

@ -29,7 +29,7 @@ class OutputFormatterStyleStack
/**
* Constructor.
*
* @param OutputFormatterStyleInterface $emptyStyle
* @param OutputFormatterStyleInterface|null $emptyStyle
*/
public function __construct(OutputFormatterStyleInterface $emptyStyle = null)
{
@ -58,7 +58,7 @@ class OutputFormatterStyleStack
/**
* Pops a style from the stack.
*
* @param OutputFormatterStyleInterface $style
* @param OutputFormatterStyleInterface|null $style
*
* @return OutputFormatterStyleInterface
*

View File

@ -178,7 +178,7 @@ class ProgressHelper extends Helper
* Starts the progress output.
*
* @param OutputInterface $output An Output instance
* @param integer $max Maximum steps
* @param integer|null $max Maximum steps
*/
public function start(OutputInterface $output, $max = null)
{