From 89530f88f742d5554a87c6117b824c8fc102c944 Mon Sep 17 00:00:00 2001 From: Marco Pivetta Date: Tue, 13 Jan 2015 00:32:10 +0100 Subject: [PATCH] #1001 DDC-3005 - Removing dead assignment `HydrationCompleteHandler#__construct()` --- lib/Doctrine/ORM/Internal/HydrationCompleteHandler.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/Doctrine/ORM/Internal/HydrationCompleteHandler.php b/lib/Doctrine/ORM/Internal/HydrationCompleteHandler.php index 4d6851f92..9fb963a39 100644 --- a/lib/Doctrine/ORM/Internal/HydrationCompleteHandler.php +++ b/lib/Doctrine/ORM/Internal/HydrationCompleteHandler.php @@ -53,9 +53,8 @@ final class HydrationCompleteHandler */ public function __construct(ListenersInvoker $listenersInvoker, EntityManagerInterface $em) { - $this->uow = $uow; $this->listenersInvoker = $listenersInvoker; - $this->em = $em; + $this->em = $em; } /**