[Console] Inherit phpdoc from OutputFormatterInterface

This commit is contained in:
Roland Franssen 2017-04-07 15:10:19 +02:00
parent d48fae7f8c
commit ff3cb9cb27
2 changed files with 8 additions and 27 deletions

View File

@ -79,9 +79,7 @@ class OutputFormatter implements OutputFormatterInterface
} }
/** /**
* Sets the decorated flag. * {@inheritdoc}
*
* @param bool $decorated Whether to decorate the messages or not
*/ */
public function setDecorated($decorated) public function setDecorated($decorated)
{ {
@ -89,9 +87,7 @@ class OutputFormatter implements OutputFormatterInterface
} }
/** /**
* Gets the decorated flag. * {@inheritdoc}
*
* @return bool true if the output will decorate messages, false otherwise
*/ */
public function isDecorated() public function isDecorated()
{ {
@ -99,10 +95,7 @@ class OutputFormatter implements OutputFormatterInterface
} }
/** /**
* Sets a new style. * {@inheritdoc}
*
* @param string $name The style name
* @param OutputFormatterStyleInterface $style The style instance
*/ */
public function setStyle($name, OutputFormatterStyleInterface $style) public function setStyle($name, OutputFormatterStyleInterface $style)
{ {
@ -110,11 +103,7 @@ class OutputFormatter implements OutputFormatterInterface
} }
/** /**
* Checks if output formatter has style with specified name. * {@inheritdoc}
*
* @param string $name
*
* @return bool
*/ */
public function hasStyle($name) public function hasStyle($name)
{ {
@ -122,13 +111,7 @@ class OutputFormatter implements OutputFormatterInterface
} }
/** /**
* Gets style options from style with specified name. * {@inheritdoc}
*
* @param string $name
*
* @return OutputFormatterStyleInterface
*
* @throws \InvalidArgumentException When style isn't defined
*/ */
public function getStyle($name) public function getStyle($name)
{ {
@ -140,11 +123,7 @@ class OutputFormatter implements OutputFormatterInterface
} }
/** /**
* Formats a message according to the given styles. * {@inheritdoc}
*
* @param string $message The message to style
*
* @return string The styled message
*/ */
public function format($message) public function format($message)
{ {

View File

@ -55,6 +55,8 @@ interface OutputFormatterInterface
* @param string $name * @param string $name
* *
* @return OutputFormatterStyleInterface * @return OutputFormatterStyleInterface
*
* @throws \InvalidArgumentException When style isn't defined
*/ */
public function getStyle($name); public function getStyle($name);