Skip to content

Commit

Permalink
Merge pull request #638 from rapzo/dev
Browse files Browse the repository at this point in the history
Fixed the Command::nl() docblock. Method doesn't print to the output,
  • Loading branch information
nateabele committed Sep 12, 2012
2 parents 7b422f4 + d8f9742 commit 471bdd6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions console/Command.php
Original file line number Diff line number Diff line change
Expand Up @@ -331,10 +331,10 @@ public function columns($rows, $options = array()) {
}

/**
* Add newlines ("\n") to the output stream.
* Add newlines ("\n") a given number of times and return them in a single string.
*
* @param integer $number The number of new lines to print.
* @return integer
* @param integer $number The number of new lines to fill into a string.
* @return string
*/
public function nl($number = 1) {
return str_repeat("\n", $number);
Expand Down

0 comments on commit 471bdd6

Please sign in to comment.