lithium\console\Command::hr PHP 메소드

hr() 공개 메소드

Adds a horizontal line to output stream.
public hr ( integer $length = 80, integer $newlines = 1 ) : integer
$length integer The length of the line, defaults to 80.
$newlines integer How many new lines to print afterwards, defaults to 1.
리턴 integer
    public function hr($length = 80, $newlines = 1)
    {
        return $this->out(str_repeat('-', $length), $newlines);
    }