From 16d963b4bd6cd99dc75cd7b687582fb8c69052e4 Mon Sep 17 00:00:00 2001 From: David Buchmann Date: Tue, 4 Jun 2013 11:24:35 +0200 Subject: [PATCH] remove unused 'use' statements --- Doctrine/AbstractUserListener.php | 3 +-- Doctrine/MongoDB/UserListener.php | 2 -- Doctrine/Orm/UserListener.php | 1 - 3 files changed, 1 insertion(+), 5 deletions(-) diff --git a/Doctrine/AbstractUserListener.php b/Doctrine/AbstractUserListener.php index 3b3949cfc8..5b52d097e6 100644 --- a/Doctrine/AbstractUserListener.php +++ b/Doctrine/AbstractUserListener.php @@ -13,9 +13,8 @@ use Doctrine\Common\EventSubscriber; use Doctrine\Common\Persistence\Event\LifecycleEventArgs; -use Doctrine\Common\Persistence\Event\PreUpdateEventArgs; -use FOS\UserBundle\Model\UserInterface; use Symfony\Component\DependencyInjection\ContainerInterface; +use FOS\UserBundle\Model\UserInterface; /** * Base Doctrine listener updating the canonical username and password fields. diff --git a/Doctrine/MongoDB/UserListener.php b/Doctrine/MongoDB/UserListener.php index a9c64c982b..45fbaac143 100644 --- a/Doctrine/MongoDB/UserListener.php +++ b/Doctrine/MongoDB/UserListener.php @@ -11,13 +11,11 @@ namespace FOS\UserBundle\Doctrine\MongoDB; -use Doctrine\Common\EventSubscriber; use Doctrine\ODM\MongoDB\Events; use Doctrine\ODM\MongoDB\Event\LifecycleEventArgs; use Doctrine\ODM\MongoDB\Event\PreUpdateEventArgs; use FOS\UserBundle\Doctrine\AbstractUserListener; use FOS\UserBundle\Model\UserInterface; -use Symfony\Component\DependencyInjection\ContainerInterface; /** * Doctrine MongoDB ODM listener updating the canonical fields and the password. diff --git a/Doctrine/Orm/UserListener.php b/Doctrine/Orm/UserListener.php index fe111fa39f..f8b3dde8c0 100644 --- a/Doctrine/Orm/UserListener.php +++ b/Doctrine/Orm/UserListener.php @@ -16,7 +16,6 @@ use Doctrine\ORM\Event\PreUpdateEventArgs; use FOS\UserBundle\Model\UserInterface; use FOS\UserBundle\Doctrine\AbstractUserListener; -use Symfony\Component\DependencyInjection\ContainerInterface; /** * Doctrine ORM listener updating the canonical fields and the password.