You are here

public function RouterListenerTest::getPortData in Zircon Profile 8

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

File

vendor/symfony/http-kernel/Tests/EventListener/RouterListenerTest.php, line 54

Class

RouterListenerTest

Namespace

Symfony\Component\HttpKernel\Tests\EventListener

Code

public function getPortData() {
  return array(
    array(
      80,
      443,
      'http://localhost/',
      80,
      443,
    ),
    array(
      80,
      443,
      'http://localhost:90/',
      90,
      443,
    ),
    array(
      80,
      443,
      'https://localhost/',
      80,
      443,
    ),
    array(
      80,
      443,
      'https://localhost:90/',
      80,
      90,
    ),
  );
}