Ejemplo n.º 1
0
 public static function createCommentEvent($post_id, $user_id, $comment)
 {
     $comment_event = new CommentEvent();
     $comment_event->post_id = $post_id;
     $comment_event->user_id = $user_id;
     $comment_event->text = $comment;
     $result = $comment_event->save();
     return $result;
 }