eventDispatcher = $eventDispatcher; parent::__construct($wrapped); } public function getRepository($className) { return $this->wrapped->getRepository($this->getEntityName($className)); } public function new($className) { $entityName = $this->getEntityName($className); return new $entityName; } public function create(EntityInterface $entity): self { $this->persist($entity); $this->eventDispatcher->dispatch(new EntityManagerEvent($entity), EntityManagerEvent::CREATE_EVENT); return $this; } public function update(EntityInterface $entity): self { $this->persist($entity); $this->eventDispatcher->dispatch(new EntityManagerEvent($entity), EntityManagerEvent::UPDATE_EVENT); return $this; } public function delete(EntityInterface $entity): self { $this->remove($entity); $this->eventDispatcher->dispatch(new EntityManagerEvent($entity), EntityManagerEvent::DELETE_EVENT); return $this; } public function flush($entity=null): self { $this->wrapped->flush($entity); return $this; } public function clear($objectName = null): self { $this->wrapped->clear($objectName); return $this; } public function refresh($object): self { $this->wrapped->refresh($object); return $this; } public function persist($entity) { $this->wrapped->persist($entity); } public function getClassMetadata($className) { return $this->wrapped->getClassMetadata($className); } public function getEntityName($className) { if (substr($className, -9) === 'Interface') { return $this->wrapped->getClassMetadata($className)->getName(); } else { return $className; } } }