コード例 #1
0
ファイル: Company.php プロジェクト: zource/zource
 public function deleteAction()
 {
     $company = $this->contactService->findCompany($this->params('id'));
     if (!$company) {
         return $this->notFoundAction();
     }
     $this->contactService->deleteContact($company);
     return $this->redirect()->toRoute('contacts');
 }