Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 08757db

Browse files
committed
Merge branch '2.0' into 2.1
* 2.0: [Console] Fixed comment Conflicts: src/Symfony/Component/Console/Output/OutputInterface.php
2 parents 1114f73 + cb2277a commit 08757db

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ public function getVerbosity()
123123
/**
124124
* Writes a message to the output and adds a newline at the end.
125125
*
126-
* @param string|array $messages The message as an array of lines of a single string
126+
* @param string|array $messages The message as an array of lines or a single string
127127
* @param integer $type The type of output
128128
*
129129
* @api
@@ -136,7 +136,7 @@ public function writeln($messages, $type = 0)
136136
/**
137137
* Writes a message to the output.
138138
*
139-
* @param string|array $messages The message as an array of lines of a single string
139+
* @param string|array $messages The message as an array of lines or a single string
140140
* @param Boolean $newline Whether to add a newline or not
141141
* @param integer $type The type of output
142142
*

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

Lines changed: 1 addition & 1 deletion
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 (0: normal, 1: raw, 2: plain)
3939
*

0 commit comments

Comments
 (0)