예제 #1
0
파일: service.php 프로젝트: vazahat/dudex
 public function removeAnswerById($answerId)
 {
     $answer = $this->answerDao->findById($answerId);
     if ($answer === null) {
         return;
     }
     $this->removeAnswerByDto($answer);
 }