Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. TraceableUrlMatcher.php

function TraceableUrlMatcher::getTraces

1 call to TraceableUrlMatcher::getTraces()
TraceableUrlMatcher::getTracesForRequest in vendor/symfony/routing/Matcher/TraceableUrlMatcher.php

File

vendor/symfony/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(string $pathinfo) : array {
    $this->traces = [];
    try {
        $this->match($pathinfo);
    } catch (ExceptionInterface) {
    }
    return $this->traces;
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal