From 112de243327288761ba53c4ec9fbf6b306ec3c65 Mon Sep 17 00:00:00 2001 From: Benjamin Vison Date: Thu, 10 May 2018 10:07:27 -0400 Subject: [PATCH] Removing dump --- EventSubscriber/DoctrineEventSubscriber.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/EventSubscriber/DoctrineEventSubscriber.php b/EventSubscriber/DoctrineEventSubscriber.php index 0f58359..b8f2865 100755 --- a/EventSubscriber/DoctrineEventSubscriber.php +++ b/EventSubscriber/DoctrineEventSubscriber.php @@ -110,8 +110,6 @@ private function processEntity(EntityManagerInterface $em, $entity) if (null !== ($annotation = $annotationReader->getPropertyAnnotation($property, SyncParent::class))) { $getter = $annotation->getter; $parent = $entity->$getter(); - dump($parent); - die; // Using ClassUtils as $parent is actually a Proxy of the class $reflrectionParent = new \ReflectionClass(ClassUtils::getClass($parent)); $syncParentAnnotation = $annotationReader->getClassAnnotation($reflrectionParent, SyncEntity::class);