You are here

public function RegisterRoutersPassTest::getValidRoutersData in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony-cmf/routing/Tests/DependencyInjection/Compiler/RegisterRoutersPassTest.php \Symfony\Cmf\Routing\Tests\DependencyInjection\Compiler\RegisterRoutersPassTest::getValidRoutersData()

File

vendor/symfony-cmf/routing/Tests/DependencyInjection/Compiler/RegisterRoutersPassTest.php, line 66

Class

RegisterRoutersPassTest

Namespace

Symfony\Cmf\Routing\Tests\DependencyInjection\Compiler

Code

public function getValidRoutersData() {
  return array(
    array(
      'my_router',
    ),
    array(
      'my_primary_router',
      99,
    ),
    array(
      'my_router',
      0,
    ),
  );
}