public function RouteCompilerTest::getNumericVariableNames in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/routing/Tests/RouteCompilerTest.php \Symfony\Component\Routing\Tests\RouteCompilerTest::getNumericVariableNames()
File
- vendor/
symfony/ routing/ Tests/ RouteCompilerTest.php, line 174
Class
Namespace
Symfony\Component\Routing\TestsCode
public function getNumericVariableNames() {
return array(
array(
'09',
),
array(
'123',
),
array(
'1e2',
),
);
}