You are here

protected function UrlGeneratorTest::getRoutes in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/routing/Tests/Generator/UrlGeneratorTest.php \Symfony\Component\Routing\Tests\Generator\UrlGeneratorTest::getRoutes()
52 calls to UrlGeneratorTest::getRoutes()
UrlGeneratorTest::testAbsoluteSecureUrlWithNonStandardPort in vendor/symfony/routing/Tests/Generator/UrlGeneratorTest.php
UrlGeneratorTest::testAbsoluteSecureUrlWithPort443 in vendor/symfony/routing/Tests/Generator/UrlGeneratorTest.php
UrlGeneratorTest::testAbsoluteUrlWithExtraParameters in vendor/symfony/routing/Tests/Generator/UrlGeneratorTest.php
UrlGeneratorTest::testAbsoluteUrlWithNonStandardPort in vendor/symfony/routing/Tests/Generator/UrlGeneratorTest.php
UrlGeneratorTest::testAbsoluteUrlWithPort80 in vendor/symfony/routing/Tests/Generator/UrlGeneratorTest.php

... See full list

File

vendor/symfony/routing/Tests/Generator/UrlGeneratorTest.php, line 658

Class

UrlGeneratorTest

Namespace

Symfony\Component\Routing\Tests\Generator

Code

protected function getRoutes($name, Route $route) {
  $routes = new RouteCollection();
  $routes
    ->add($name, $route);
  return $routes;
}