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);
    }