Example #1
0
 /**
  * DElete entity from DB
  * @param EntityInterface $entity
  * @return $this
  */
 public function delete(EntityInterface $entity)
 {
     $entity->delete();
     return $this;
 }