예제 #1
0
파일: Person.php 프로젝트: zource/zource
 public function deleteAction()
 {
     $person = $this->contactService->findPerson($this->params('id'));
     if (!$person) {
         return $this->notFoundAction();
     }
     $this->contactService->deleteContact($person);
     return $this->redirect()->toRoute('contacts');
 }