Implements Drupal\Core\PathProcessor\OutboundPathProcessorInterface::processOutbound().
Overrides OutboundPathProcessorInterface::processOutbound
public function processOutbound($path, &$options = array(), Request $request = NULL) {
// The special path '<front>' links to the default front page.
if ($path == '<front>') {
$path = '';
}
return $path;
}