You are here

public function HttpKernelTest::getStatusCodes in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/http-kernel/Tests/HttpKernelTest.php \Symfony\Component\HttpKernel\Tests\HttpKernelTest::getStatusCodes()

File

vendor/symfony/http-kernel/Tests/HttpKernelTest.php, line 124

Class

HttpKernelTest

Namespace

Symfony\Component\HttpKernel\Tests

Code

public function getStatusCodes() {
  return array(
    array(
      200,
      404,
    ),
    array(
      404,
      200,
    ),
    array(
      301,
      200,
    ),
    array(
      500,
      200,
    ),
  );
}