CodeExplorer initProcessors example
$this->negotiator->
setCurrentUser($current_user);
$this->configSubscriber =
$config_subscriber;
} /**
* {@inheritdoc}
*/
public function processInbound($path, Request
$request) { if (!
empty($path)) { $scope = 'inbound';
if (!
isset($this->processors
[$scope])) { $this->
initProcessors($scope);
} foreach ($this->processors
[$scope] as $instance) { $path =
$instance->
processInbound($path,
$request);
} } return $path;
} /**
* {@inheritdoc}
*/