1
0
mirror of synced 2024-12-05 03:06:05 +03:00

#1001 DDC-3005 - HydrationCompleteHandler cs fixes (line-wrap)

This commit is contained in:
Marco Pivetta 2015-01-13 00:52:12 +01:00
parent 45221b1951
commit d09280a1dc

View File

@ -91,7 +91,13 @@ final class HydrationCompleteHandler
foreach ($toInvoke as $classAndEntity) { foreach ($toInvoke as $classAndEntity) {
list($class, $invoke, $entity) = $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
);
} }
} }
} }