Skip to content

Commit af0149d

Browse files
committed
[Console] Added some precision in OutputInterface::write docblock.
1 parent 842b599 commit af0149d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Symfony/Component/Console/Output/OutputInterface.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ interface OutputInterface
3535
*
3636
* @param string|array $messages The message as an array of lines of a single string
3737
* @param Boolean $newline Whether to add a newline or not
38-
* @param integer $type The type of output
38+
* @param integer $type The type of output (0: normal, 1: raw, 2: plain)
3939
*
4040
* @throws \InvalidArgumentException When unknown output type is given
4141
*
@@ -47,7 +47,7 @@ public function write($messages, $newline = false, $type = 0);
4747
* Writes a message to the output and adds a newline at the end.
4848
*
4949
* @param string|array $messages The message as an array of lines of a single string
50-
* @param integer $type The type of output
50+
* @param integer $type The type of output (0: normal, 1: raw, 2: plain)
5151
*
5252
* @api
5353
*/

0 commit comments

Comments
 (0)