Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed the Command::nl() docblock. Method doesn't print to the output, #638

Merged
merged 1 commit into from Sep 12, 2012
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions console/Command.php
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