lithium\console\Command::clear PHP Method

clear() public method

Clears the entire screen.
public clear ( ) : void
return void
    public function clear()
    {
        passthru(strtoupper(substr(PHP_OS, 0, 3)) == 'WIN' ? 'cls' : 'clear');
    }