Bläddra i källkod

[DoctrineBundle] made tweaked an error message

Fabien Potencier 14 år sedan
förälder
incheckning
f710c9c46c
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. 1 1
      src/Symfony/Bundle/DoctrineBundle/Security/EntityUserProvider.php

+ 1 - 1
src/Symfony/Bundle/DoctrineBundle/Security/EntityUserProvider.php

@@ -26,7 +26,7 @@ class EntityUserProvider implements UserProviderInterface
             $user = $this->repository->findOneBy(array($this->property => $username));
         } else {
             if (!$this->repository instanceof UserProviderInterface) {
-                throw new \InvalidArgumentException('The Doctrine user manager must implement UserManagerInterface.');
+                throw new \InvalidArgumentException(sprintf('The Doctrine repository "%s" must implement UserProviderInterface.', get_class($this->repository)));
             }
 
             $user = $this->repository->loadUserByUsername($username);