isAutoExitEnabled() public méthode

Gets whether to automatically exit after a command execution or not.
public isAutoExitEnabled ( ) : boolean
Résultat boolean Whether to automatically exit after a command execution or not
 public function testAutoExitSetting()
 {
     $application = new Application();
     $this->assertTrue($application->isAutoExitEnabled());
     $application->setAutoExit(false);
     $this->assertFalse($application->isAutoExitEnabled());
 }