浏览代码

merged branch deegital/master (PR #1674)

Commits
-------

86b96f4 Added missing import of UserInterface.
88fd076 Added missing import of UserProviderInterface.

Discussion
----------

Added missing import of UserProviderInterface
Fabien Potencier 14 年之前
父节点
当前提交
14781cebed
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      src/Symfony/Bridge/Doctrine/Security/User/EntityUserProvider.php

+ 2 - 0
src/Symfony/Bridge/Doctrine/Security/User/EntityUserProvider.php

@@ -14,6 +14,8 @@ namespace Symfony\Bridge\Doctrine\Security\User;
 use Doctrine\ORM\EntityManager;
 use Doctrine\ORM\EntityManager;
 use Symfony\Component\Security\Core\Exception\UnsupportedUserException;
 use Symfony\Component\Security\Core\Exception\UnsupportedUserException;
 use Symfony\Component\Security\Core\Exception\UsernameNotFoundException;
 use Symfony\Component\Security\Core\Exception\UsernameNotFoundException;
+use Symfony\Component\Security\Core\User\UserProviderInterface;
+use Symfony\Component\Security\Core\User\UserInterface;
 
 
 /**
 /**
  * Wrapper around a Doctrine EntityManager.
  * Wrapper around a Doctrine EntityManager.