コード例 #1
0
ファイル: service.php プロジェクト: jorgemunoz8807/havanabook
 public function removeAnswerById($answerId)
 {
     $answer = $this->answerDao->findById($answerId);
     if ($answer === null) {
         return;
     }
     $this->removeAnswerByDto($answer);
 }