Neos\Flow\Security\Authorization\AfterInvocationProcessorInterface::process PHP Method

process() public method

It is resolved and called automatically by the after invocation processor manager. The naming convention for after invocation processors is: [InterceptedClassName]_[InterceptedMethodName]AfterInvocationProcessor
public process ( Context $securityContext, object $object, Neos\Flow\Aop\JoinPointInterface $joinPoint ) : void
$securityContext Neos\Flow\Security\Context The current security context
$object object The return object to be processed
$joinPoint Neos\Flow\Aop\JoinPointInterface The joinpoint of the returning method
return void
    public function process(Context $securityContext, $object, JoinPointInterface $joinPoint);
AfterInvocationProcessorInterface