Implements Drupal\Core\PathProcessor\InboundPathProcessorInterface::processInbound().
Overrides InboundPathProcessorInterface::processInbound
File
- drupal/core/lib/Drupal/Core/PathProcessor/PathProcessorDecode.php, line 31
- Contains Drupal\Core\PathProcessor\PathProcessorDecode.
Class
- PathProcessorDecode
- Processes the inbound path by urldecoding it.
Namespace
Drupal\Core\PathProcessor
Code
public function processInbound($path, Request $request) {
return urldecode($path);
}