Reputation: 5619
I've got some problems upgrading my extension from TYPO3 6.2 to 7.6.X
got this code
/**
* Protected Variable FrontendUserRepository wird mit NULL initialisiert.
*
* @var \Typo3\CMS\Extbase\Domain\Repository\FrontendUserRepository
* @inject
*/
protected $FrontendUserRepository = NULL;
Upvotes: 2
Views: 2025
Reputation: 7016
You have to spell the namespace correctly. In this case TYPO3
has to be in upper case:
\TYPO3\CMS\Extbase\Domain\Repository\FrontendUserRepository
The class should be loaded. No further actions required but flushing the system cache.
Btw: "TYPO3" is always the correct spelling :)
Upvotes: 11