PhpSchool\CliMenu\Terminal\TerminalInterface::clear PHP Метод

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

Clear the terminal window
public clear ( ) : void
Результат void
    public function clear();

Usage Example

Пример #1
0
 /**
  * Configure the terminal to work with CliMenu
  *
  * @throws InvalidTerminalException
  */
 protected function configureTerminal()
 {
     $this->assertTerminalIsValidTTY();
     $this->terminal->setCanonicalMode();
     $this->terminal->disableCursor();
     $this->terminal->clear();
 }
All Usage Examples Of PhpSchool\CliMenu\Terminal\TerminalInterface::clear