lithium\console\Command::nl PHP Метод

nl() публичный Метод

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.
Результат string
    public function nl($number = 1)
    {
        return str_repeat("\n", $number);
    }