[Console] fixed PHPDoc

This commit is contained in:
Ahmed Tailouloute 2016-06-13 22:48:59 +00:00 committed by Fabien Potencier
parent f15b630980
commit 37fac3e44f
3 changed files with 25 additions and 2 deletions

View File

@ -19,8 +19,7 @@ namespace Symfony\Component\Console\Helper;
class TableSeparator extends TableCell class TableSeparator extends TableCell
{ {
/** /**
* @param string $value * @param array $options
* @param array $options
*/ */
public function __construct(array $options = array()) public function __construct(array $options = array())
{ {

View File

@ -73,21 +73,33 @@ class NullOutput implements OutputInterface
return self::VERBOSITY_QUIET; return self::VERBOSITY_QUIET;
} }
/**
* {@inheritdoc}
*/
public function isQuiet() public function isQuiet()
{ {
return true; return true;
} }
/**
* {@inheritdoc}
*/
public function isVerbose() public function isVerbose()
{ {
return false; return false;
} }
/**
* {@inheritdoc}
*/
public function isVeryVerbose() public function isVeryVerbose()
{ {
return false; return false;
} }
/**
* {@inheritdoc}
*/
public function isDebug() public function isDebug()
{ {
return false; return false;

View File

@ -94,21 +94,33 @@ abstract class Output implements OutputInterface
return $this->verbosity; return $this->verbosity;
} }
/**
* {@inheritdoc}
*/
public function isQuiet() public function isQuiet()
{ {
return self::VERBOSITY_QUIET === $this->verbosity; return self::VERBOSITY_QUIET === $this->verbosity;
} }
/**
* {@inheritdoc}
*/
public function isVerbose() public function isVerbose()
{ {
return self::VERBOSITY_VERBOSE <= $this->verbosity; return self::VERBOSITY_VERBOSE <= $this->verbosity;
} }
/**
* {@inheritdoc}
*/
public function isVeryVerbose() public function isVeryVerbose()
{ {
return self::VERBOSITY_VERY_VERBOSE <= $this->verbosity; return self::VERBOSITY_VERY_VERBOSE <= $this->verbosity;
} }
/**
* {@inheritdoc}
*/
public function isDebug() public function isDebug()
{ {
return self::VERBOSITY_DEBUG <= $this->verbosity; return self::VERBOSITY_DEBUG <= $this->verbosity;