You are here

public function PathProcessorDecode::processInbound in Drupal 10

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/PathProcessor/PathProcessorDecode.php \Drupal\Core\PathProcessor\PathProcessorDecode::processInbound()
  2. 9 core/lib/Drupal/Core/PathProcessor/PathProcessorDecode.php \Drupal\Core\PathProcessor\PathProcessorDecode::processInbound()

File

core/lib/Drupal/Core/PathProcessor/PathProcessorDecode.php, line 25

Class

PathProcessorDecode
Processes the inbound path by urldecoding it.

Namespace

Drupal\Core\PathProcessor

Code

public function processInbound($path, Request $request) {
  return urldecode($path);
}