lithium\console\Command::nl PHP Method

nl() public method

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