I’ve been trying to upgrade from 13.1 (which is working correctly) to 13.3 or 13.4… I am using an Authentication service after a login, and trying access a repository class during this step.
Instantiating the repository is throwing the following error:
Exception: No request given. ConfigurationManager has not been initialized properly.
It seems to be triggered by the ConfigurationManager having no $request: typo3/typo3/sysext/extbase/Classes/Configuration/ConfigurationManager.php at 13.3 · TYPO3/typo3 · GitHub
This check for the request doesn’t exist in 13.1 and earlier versions. How should I be setting up this request in an AuthenticationService context, to access models and repositories there?
Thank you.