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());
 }