Neos\Flow\Mvc\ActionRequest::emitRequestDispatched PHP Метод

emitRequestDispatched() защищенный Метод

The action request is not proxyable, so the signal is dispatched manually here. The safeguard allows unit tests without the dispatcher dependency.
protected emitRequestDispatched ( ActionRequest $request ) : void
$request ActionRequest
Результат void
    protected function emitRequestDispatched($request)
    {
        if ($this->objectManager !== null) {
            $dispatcher = $this->objectManager->get(SignalSlotDispatcher::class);
            if ($dispatcher !== null) {
                $dispatcher->dispatch(ActionRequest::class, 'requestDispatched', [$request]);
            }
        }
    }