public function RouterListenerTest::getPortData

File

drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/EventListener/RouterListenerTest.php, line 57

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,
    ),
  );
}