8000 [Console] Fixed comment · weaverryan/symfony@3be3dde · GitHub
[go: up one dir, main page]

Skip to content

Commit 3be3dde

Browse files
Denis GorbachevDenis Gorbachev
authored andcommitted
[Console] Fixed comment
1 parent 37d0491 commit 3be3dde

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ public function getVerbosity()
127127
/**
128128
* Writes a message to the output and adds a newline at the end.
129129
*
130-
* @param string|array $messages The message as an array of lines of a single string
130+
* @param string|array $messages The message as an array of lines or a single string
131131
* @param integer $type The type of output
132132
*
133133
* @api
@@ -140,7 +140,7 @@ public function writeln($messages, $type = 0)
140140
/**
141141
* Writes a message to the output.
142142
*
143-
* @param string|array $messages The message as an array of lines of a single string
143+
* @param string|array $messages The message as an array of lines or a single string
144144
* @param Boolean $newline Whether to add a newline or not
145145
* @param integer $type The type of output
146146
*

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line number 9884 Diff line change
@@ -33,7 +33,7 @@ interface OutputInterface
3333
/**
3434
* Writes a message to the output.
3535
*
36-
* @param string|array $messages The message as an array of lines of a single string
36+
* @param string|array $messages The message as an array of lines or a single string
3737
* @param Boolean $newline Whether to add a newline or not
3838
* @param integer $type The type of output
3939
*
@@ -46,7 +46,7 @@ public function write($messages, $newline = false, $type = 0);
4646
/**
4747
* Writes a message to the output and adds a newline at the end.
4848
*
49-
* @param string|array $messages The message as an array of lines of a single string
49+
* @param string|array $messages The message as an array of lines or a single string
5050
* @param integer $type The type of output
5151
*
5252
* @api

0 commit comments

Comments
 (0)
0