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);