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

process() public method

It resolves any available AfterInvocationProcessor for the given return object and invokes them. The naming convention is: [InterceptedClassName]_[InterceptedMethodName]_AfterInvocationProcessor
public process ( Context $securityContext, object $object, Neos\Flow\Aop\JoinPointInterface $joinPoint ) : boolean
$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 boolean TRUE if access is granted, FALSE if the manager abstains from decision
    public function process(Context $securityContext, $object, JoinPointInterface $joinPoint)
    {
    }
AfterInvocationProcessorManager