Comment.php 314 B

12345678910111213141516171819202122232425
  1. <?php
  2. namespace GraphQL\Examples\Blog\Data;
  3. use GraphQL\Utils\Utils;
  4. class Comment
  5. {
  6. public $id;
  7. public $authorId;
  8. public $storyId;
  9. public $parentId;
  10. public $body;
  11. public $isAnonymous;
  12. public function __construct(array $data)
  13. {
  14. Utils::assign($this, $data);
  15. }
  16. }