BlogPost.php 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <?php
  2. /*
  3. * Copyright 2011 Johannes M. Schmitt <schmittjoh@gmail.com>
  4. *
  5. * Licensed under the Apache License, Version 2.0 (the "License");
  6. * you may not use this file except in compliance with the License.
  7. * You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. namespace JMS\SerializerBundle\Tests\Fixtures;
  18. use JMS\SerializerBundle\Annotation\Type;
  19. use JMS\SerializerBundle\Annotation\SerializedName;
  20. use JMS\SerializerBundle\Annotation\XmlRoot;
  21. use JMS\SerializerBundle\Annotation\XmlAttribute;
  22. use JMS\SerializerBundle\Annotation\XmlList;
  23. use JMS\SerializerBundle\Annotation\Groups;
  24. use Doctrine\Common\Collections\ArrayCollection;
  25. /** @XmlRoot("blog-post") */
  26. class BlogPost
  27. {
  28. /**
  29. * @Type("string")
  30. * @Groups({"comments","post"})
  31. */
  32. private $title;
  33. /**
  34. * @Type("DateTime")
  35. * @XmlAttribute
  36. */
  37. private $createdAt;
  38. /**
  39. * @Type("boolean")
  40. * @SerializedName("is_published")
  41. * @XmlAttribute
  42. * @Groups({"post"})
  43. */
  44. private $published;
  45. /**
  46. * @Type("ArrayCollection<JMS\SerializerBundle\Tests\Fixtures\Comment>")
  47. * @XmlList(inline=true, entry="comment")
  48. * @Groups({"comments"})
  49. */
  50. private $comments;
  51. /**
  52. * @Type("JMS\SerializerBundle\Tests\Fixtures\Author")
  53. * @Groups({"post"})
  54. */
  55. private $author;
  56. public function __construct($title, Author $author, \DateTime $createdAt)
  57. {
  58. $this->title = $title;
  59. $this->author = $author;
  60. $this->published = false;
  61. $this->comments = new ArrayCollection();
  62. $this->createdAt = $createdAt;
  63. }
  64. public function setPublished()
  65. {
  66. $this->published = true;
  67. }
  68. public function addComment(Comment $comment)
  69. {
  70. $this->comments->add($comment);
  71. }
  72. }