public function TraceableUrlMatcherTest::getLevels

1 call to TraceableUrlMatcherTest::getLevels()
TraceableUrlMatcherTest::test in drupal/core/vendor/symfony/routing/Symfony/Component/Routing/Tests/Matcher/TraceableUrlMatcherTest.php

File

drupal/core/vendor/symfony/routing/Symfony/Component/Routing/Tests/Matcher/TraceableUrlMatcherTest.php, line 57

Class

TraceableUrlMatcherTest

Namespace

Symfony\Component\Routing\Tests\Matcher

Code

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