NullPathProcessorManager.php in Drupal 8
File
core/lib/Drupal/Core/PathProcessor/NullPathProcessorManager.php
View source
<?php
namespace Drupal\Core\PathProcessor;
use Drupal\Core\Render\BubbleableMetadata;
use Symfony\Component\HttpFoundation\Request;
class NullPathProcessorManager implements InboundPathProcessorInterface, OutboundPathProcessorInterface {
public function processInbound($path, Request $request) {
return $path;
}
public function processOutbound($path, &$options = [], Request $request = NULL, BubbleableMetadata $bubbleable_metadata = NULL) {
return $path;
}
}