isAutoExitEnabled() публичный метод

Gets whether to automatically exit after a command execution or not.
public isAutoExitEnabled ( ) : boolean
Результат boolean Whether to automatically exit after a command execution or not
Пример #1
0
 public function testAutoExitSetting()
 {
     $application = new Application();
     $this->assertTrue($application->isAutoExitEnabled());
     $application->setAutoExit(false);
     $this->assertFalse($application->isAutoExitEnabled());
 }