You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Comment.php 263B

123456789101112131415161718
  1. <?php
  2. namespace Blog\Model;
  3. class Comment
  4. {
  5. protected $user;
  6. protected $date;
  7. protected $blogID;
  8. protected $comment;
  9. public function getComments($blogID)
  10. {
  11. // vraag de DB om alle comments voro blogID
  12. return [];
  13. }
  14. }