Browse Source

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 years ago
parent
commit
14781cebed
1 changed files with 2 additions and 0 deletions
  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 Symfony\Component\Security\Core\Exception\UnsupportedUserException;
 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.