浏览代码

[DoctrineBundle] made tweaked an error message

Fabien Potencier 14 年之前
父节点
当前提交
f710c9c46c
共有 1 个文件被更改,包括 1 次插入1 次删除
  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);