Contents ../ lithium\console\Command::nl() public method Add newlines ("\n") a given number of times and return them in a single string. Parameters integer $number The number of new lines to fill into a string. Returns string Source public function nl($number = 1) { return str_repeat("\n", $number); }