You are here

public function RouteCompilerTest::getNumericVariableNames in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/routing/Tests/RouteCompilerTest.php \Symfony\Component\Routing\Tests\RouteCompilerTest::getNumericVariableNames()

File

vendor/symfony/routing/Tests/RouteCompilerTest.php, line 174

Class

RouteCompilerTest

Namespace

Symfony\Component\Routing\Tests

Code

public function getNumericVariableNames() {
  return array(
    array(
      '09',
    ),
    array(
      '123',
    ),
    array(
      '1e2',
    ),
  );
}