You are here

public function ApplicationTester::getStatusCode in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/console/Tester/ApplicationTester.php \Symfony\Component\Console\Tester\ApplicationTester::getStatusCode()

Gets the status code returned by the last execution of the application.

Return value

int The status code

File

vendor/symfony/console/Tester/ApplicationTester.php, line 124

Class

ApplicationTester
Eases the testing of console applications.

Namespace

Symfony\Component\Console\Tester

Code

public function getStatusCode() {
  return $this->statusCode;
}