Skip to content

Commit

Permalink
[Console] Added some precision in OutputInterface::write docblock.
Browse files Browse the repository at this point in the history
  • Loading branch information
jfsimon committed Aug 6, 2012
1 parent 842b599 commit af0149d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Symfony/Component/Console/Output/OutputInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ interface OutputInterface
*
* @param string|array $messages The message as an array of lines of a single string
* @param Boolean $newline Whether to add a newline or not
* @param integer $type The type of output
* @param integer $type The type of output (0: normal, 1: raw, 2: plain)
*
* @throws \InvalidArgumentException When unknown output type is given
*
Expand All @@ -47,7 +47,7 @@ public function write($messages, $newline = false, $type = 0);
* Writes a message to the output and adds a newline at the end.
*
* @param string|array $messages The message as an array of lines of a single string
* @param integer $type The type of output
* @param integer $type The type of output (0: normal, 1: raw, 2: plain)
*
* @api
*/
Expand Down

0 comments on commit af0149d

Please sign in to comment.