Neos\Neos\EventLog\Integrations\AbstractIntegrationService::initializeAccountIdentifier PHP 메소드

initializeAccountIdentifier() 보호된 메소드

Try to set the current account identifier emitting the events, if possible
protected initializeAccountIdentifier ( ) : void
리턴 void
    protected function initializeAccountIdentifier()
    {
        if ($this->securityContext->canBeInitialized()) {
            $account = $this->securityContext->getAccount();
            if ($account !== null) {
                $this->eventEmittingService->setCurrentAccountIdentifier($account->getAccountIdentifier());
            }
        }
    }
AbstractIntegrationService