protected function PathProcessorManager::getInbound in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/PathProcessor/PathProcessorManager.php \Drupal\Core\PathProcessor\PathProcessorManager::getInbound()
- 9 core/lib/Drupal/Core/PathProcessor/PathProcessorManager.php \Drupal\Core\PathProcessor\PathProcessorManager::getInbound()
Returns the sorted array of inbound processors.
Return value
array An array of processor objects.
File
- core/
lib/ Drupal/ Core/ PathProcessor/ PathProcessorManager.php, line 81
Class
- PathProcessorManager
- Path processor manager.
Namespace
Drupal\Core\PathProcessorCode
protected function getInbound() {
if (empty($this->sortedInbound)) {
$this->sortedInbound = $this
->sortProcessors('inboundProcessors');
}
return $this->sortedInbound;
}