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