private function uploadComment($senderUserId, $commentDto)
 {
     $commentAndLikeController = new CommentAndLikeController();
     \Cake\Log\Log::info('Comment DTO object send to submit');
     if ($commentAndLikeController->submitComment($senderUserId, $commentDto)) {
         \Cake\Log\Log::debug("Comment stored in database");
     }
 }