Example #1
0
 /**
  * {@inheritdoc}
  */
 public function removeResource($resource)
 {
     $this->eventDispatcher->dispatchOnPreRemoveResource($resource);
     $em = $this->getDoctrineHelper()->getEntityManager();
     $em->remove($resource);
     $em->flush();
     $this->eventDispatcher->dispatchOnPostRemoveResource($resource);
 }