<?php/**
* @file
* Contains Drupal\Core\PathProcessor\OutboundPathProcessorInterface.
*/namespaceDrupal\Core\PathProcessor;
useSymfony\Component\HttpFoundation\Request;
/**
* Defines an interface for classes that process the outbound path.
*/interfaceOutboundPathProcessorInterface {
/**
* Processes the outbound path.
*
* @param string $path
* The path to process.
*
* @param array $options
* An array of options such as would be passed to the generator's
* generateFromPath() method.
*
* @param \Symfony\Component\HttpFoundation\Request $request
* The HttpRequest object representing the current request.
*
* @return
* The processed path.
*/
public functionprocessOutbound($path, &$options = array(), Request $request = NULL);
}