8000 merged branch DenisGorbachev/2.0 (PR #7198) · combro2k/symfony@cb2277a · GitHub
[go: up one dir, main page]

Skip to content

Commit cb2277a

Browse files
committed
merged branch DenisGorbachev/2.0 (PR symfony#7198)
This PR was merged into the 2.0 branch. Commits ------- 3be3dde [Console] Fixed comment Discussion ---------- [Console] Fixed comment | Q | A | ------------- | --- | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | - | License | MIT | Doc PR | -
2 parents 37d0491 + 3be3dde commit cb2277a

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 numberDiff 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