コード例 #1
0
ファイル: comment_service.php プロジェクト: vazahat/dudex
 /**
  * Deletes all user comments.
  *
  * @param integer $userId
  */
 public function deleteUserComments($userId)
 {
     $this->commentDao->deleteByUserId($userId);
 }