S
Size: a a a
YT
AD
AD
DS
AD
AD
AD
There is no user provider for user "App\Model\User\Entity\User\User". Shouldn't the "supportsClass()" method of your user provider return true for this classname?" at /app/vendor/symfony/security-http/Firewall/ContextListener.php line 286 {"exception":"[object] (RuntimeException(code: 0): There is no user provider for user \"App\\Model\\User\\Entity\\User\\User\". Shouldn't the \"supportsClass()\" method of your user provider return true for this classname?
DS
AD
DS
class LoginFormAuthenticator implements AuthenticatorInterface
DS
class UserRepository extends ServiceEntityRepository implements UserLoaderInterface, UserProviderInterface
DS
/**
* @param string $class
* @return bool
*/
public function supportsClass(string $class): bool
{
return User::class === $class || is_subclass_of($class, User::class);
}
АС
✨
АС