Skip to content

Commit ca3aa9c

Browse files
committed
merged branch jfsimon/issue-4947 (PR symfony#5198)
Commits ------- af0149d [Console] Added some precision in OutputInterface::write docblock. Discussion ---------- [Console] Added some precision in OutputInterface::write docblock. No code affected :) Fixes issue symfony#4947 --------------------------------------------------------------------------- by travisbot at 2012-08-06T19:50:02Z This pull request [passes](http://travis-ci.org/symfony/symfony/builds/2050525) (merged af0149d into 842b599).
2 parents 842b599 + af0149d commit ca3aa9c

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)