Deprecation: #86466 - AbstractUserAuthentication->fetchUserRecord

See forge#86466

Description

Method TYPO3\CMS\Core\Authentication\AbstractUserAuthentication->fetchUserRecord() has been marked as deprecated.

Impact

Calling the method will trigger a PHP E_USER_DEPRECATED error.

Affected Installations

The methods has been called indirectly via TYPO3\CMS\Core\Authentication\AbstractAuthenticationService->fetchUserRecord() as $this->pObj->fetchUserRecord(). It has usually not been called directly through custom authentication services. Instances are usually not affected by the change, the extension scanner will find possible usages.

Migration

If used within authentication services, use $this->fetchUserRecord() instead, otherwise copy the method around.