PhpSchool\CliMenu\CliMenu::closeThis PHP Метод

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

public closeThis ( )
    public function closeThis()
    {
        $this->terminal->clean();
        $this->terminal->moveCursorToTop();
        $this->open = false;
    }

Usage Example

Пример #1
0
 /**
  * Display the sub menu
  * @param CliMenu $parentMenu
  */
 public function showSubMenu(CliMenu $parentMenu)
 {
     $this->parentMenu = $parentMenu;
     $this->parentMenu->closeThis();
     $this->subMenu->open();
 }