Skip to content

Instantly share code, notes, and snippets.

@radmiraal
Created November 22, 2012 10:26
Show Gist options
  • Save radmiraal/4130429 to your computer and use it in GitHub Desktop.
Save radmiraal/4130429 to your computer and use it in GitHub Desktop.
/**
* The posts contained in this blog
*
* @var \Doctrine\Common\Collections\Collection<\TYPO3\Blog\Domain\Model\Post>
* @ORM\OneToMany(mappedBy="blog")
* @ORM\OrderBy({"date" = "DESC"})
*/
protected $posts;
/**
* @var \TYPO3\Blog\Domain\Model\Blog
* @ORM\ManyToOne(inversedBy="posts")
*/
protected $blog;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment