From d09280a1dcc6e0542866ee385b4dc8da0ebdcdb1 Mon Sep 17 00:00:00 2001 From: Marco Pivetta Date: Tue, 13 Jan 2015 00:52:12 +0100 Subject: [PATCH] #1001 DDC-3005 - `HydrationCompleteHandler` cs fixes (line-wrap) --- lib/Doctrine/ORM/Internal/HydrationCompleteHandler.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/lib/Doctrine/ORM/Internal/HydrationCompleteHandler.php b/lib/Doctrine/ORM/Internal/HydrationCompleteHandler.php index 1f0155123..4da71cefa 100644 --- a/lib/Doctrine/ORM/Internal/HydrationCompleteHandler.php +++ b/lib/Doctrine/ORM/Internal/HydrationCompleteHandler.php @@ -91,7 +91,13 @@ final class HydrationCompleteHandler foreach ($toInvoke as $classAndEntity) { list($class, $invoke, $entity) = $classAndEntity; - $this->listenersInvoker->invoke($class, Events::postLoad, $entity, new LifecycleEventArgs($entity, $this->em), $invoke); + $this->listenersInvoker->invoke( + $class, + Events::postLoad, + $entity, + new LifecycleEventArgs($entity, $this->em), + $invoke + ); } } }