lithium\console\Command::hr PHP Method

hr() public method

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.
return integer
    public function hr($length = 80, $newlines = 1)
    {
        return $this->out(str_repeat('-', $length), $newlines);
    }