public function PathProcessorManager::processInbound

Implements Drupal\Core\PathProcessor\InboundPathProcessorInterface::processInbound().

Overrides InboundPathProcessorInterface::processInbound

File

drupal/core/lib/Drupal/Core/PathProcessor/PathProcessorManager.php, line 72
Contains Drupal\Core\PathProcessor\PathProcessorManager.

Class

PathProcessorManager
Path processor manager.

Namespace

Drupal\Core\PathProcessor

Code

public function processInbound($path, Request $request) {
  $processors = $this
    ->getInbound();
  foreach ($processors as $processor) {
    $path = $processor
      ->processInbound($path, $request);
  }
  return $path;
}