Beispiel #1
0
 /**
  * delete action - deletes a blog in the repository
  *
  * @param \Lobacher\Simpleblog\Domain\Model\Blog $blog
  */
 public function deleteAction(\Lobacher\Simpleblog\Domain\Model\Blog $blog)
 {
     $this->blogRepository->remove($blog);
     $this->redirect('list');
 }