public function TraceableUrlMatcher::getTraces

File

drupal/core/vendor/symfony/routing/Symfony/Component/Routing/Matcher/TraceableUrlMatcher.php, line 32

Class

TraceableUrlMatcher
TraceableUrlMatcher helps debug path info matching by tracing the match.

Namespace

Symfony\Component\Routing\Matcher

Code

public function getTraces($pathinfo) {
  $this->traces = array();
  try {
    $this
      ->match($pathinfo);
  } catch (ExceptionInterface $e) {
  }
  return $this->traces;
}