protected function PathProcessorManager::getInbound

Returns the sorted array of inbound processors.

Return value

array An array of processor objects.

1 call to PathProcessorManager::getInbound()

File

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

Class

PathProcessorManager
Path processor manager.

Namespace

Drupal\Core\PathProcessor

Code

protected function getInbound() {
  if (empty($this->sortedInbound)) {
    $this->sortedInbound = $this
      ->sortProcessors('inboundProcessors');
  }
  return $this->sortedInbound;
}