Guest User

Untitled

a guest
Jan 22nd, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. <?php
  2.  
  3. public function create(VoteInterface $vote, VotableCommentInterface $comment)
  4. {
  5. $this->voteBlamer->blame($vote);
  6.  
  7. if (count($this->validator->validate($vote))) {
  8. return false;
  9. }
  10.  
  11. $this->voteManager->addVote($vote, $comment);
  12.  
  13. return true;
  14. }
Add Comment
Please, Sign In to add comment