public function TraceableUrlMatcherTest::getLevels in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/routing/Tests/Matcher/TraceableUrlMatcherTest.php \Symfony\Component\Routing\Tests\Matcher\TraceableUrlMatcherTest::getLevels()
2 calls to TraceableUrlMatcherTest::getLevels()
- TraceableUrlMatcherTest::test in vendor/
symfony/ routing/ Tests/ Matcher/ TraceableUrlMatcherTest.php - TraceableUrlMatcherTest::testMatchRouteOnMultipleHosts in vendor/
symfony/ routing/ Tests/ Matcher/ TraceableUrlMatcherTest.php
File
- vendor/
symfony/ routing/ Tests/ Matcher/ TraceableUrlMatcherTest.php, line 92
Class
Namespace
Symfony\Component\Routing\Tests\MatcherCode
public function getLevels($traces) {
$levels = array();
foreach ($traces as $trace) {
$levels[] = $trace['level'];
}
return $levels;
}