You are here

public function TraceableUrlMatcherTest::getLevels in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 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

TraceableUrlMatcherTest

Namespace

Symfony\Component\Routing\Tests\Matcher

Code

public function getLevels($traces) {
  $levels = array();
  foreach ($traces as $trace) {
    $levels[] = $trace['level'];
  }
  return $levels;
}