public function Application::setAutoExit in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/console/Application.php \Symfony\Component\Console\Application::setAutoExit()
Sets whether to automatically exit after a command execution or not.
Parameters
bool $boolean Whether to automatically exit after a command execution or not:
File
- vendor/
symfony/ console/ Application.php, line 260
Class
- Application
- An Application is the container for a collection of commands.
Namespace
Symfony\Component\ConsoleCode
public function setAutoExit($boolean) {
$this->autoExit = (bool) $boolean;
}