You are here

public function ConsoleTerminateEvent::getExitCode in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/console/Event/ConsoleTerminateEvent.php \Symfony\Component\Console\Event\ConsoleTerminateEvent::getExitCode()

Gets the exit code.

Return value

int The command exit code

File

vendor/symfony/console/Event/ConsoleTerminateEvent.php, line 54

Class

ConsoleTerminateEvent
Allows to manipulate the exit code of a command after its execution.

Namespace

Symfony\Component\Console\Event

Code

public function getExitCode() {
  return $this->exitCode;
}