From 45221b195191379d755c17f1b46ee025c93d294d Mon Sep 17 00:00:00 2001 From: Marco Pivetta Date: Tue, 13 Jan 2015 00:51:44 +0100 Subject: [PATCH] #1001 DDC-3005 - removed `HydrationCompleteHandler#invokeAllDeferredPostLoadEvents()` (useless method call indirection) --- lib/Doctrine/ORM/Internal/HydrationCompleteHandler.php | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/lib/Doctrine/ORM/Internal/HydrationCompleteHandler.php b/lib/Doctrine/ORM/Internal/HydrationCompleteHandler.php index 077615f29..1f0155123 100644 --- a/lib/Doctrine/ORM/Internal/HydrationCompleteHandler.php +++ b/lib/Doctrine/ORM/Internal/HydrationCompleteHandler.php @@ -80,16 +80,10 @@ final class HydrationCompleteHandler /** * This method should me called after any hydration cycle completed. - */ - public function hydrationComplete() - { - $this->invokeAllDeferredPostLoadEvents(); - } - - /** + * * Method fires all deferred invocations of postLoad events */ - private function invokeAllDeferredPostLoadEvents() + public function hydrationComplete() { $toInvoke = $this->deferredPostLoadInvocations; $this->deferredPostLoadInvocations = array();