Skip to content

Instantly share code, notes, and snippets.

@ger86
Last active February 8, 2019 13:15
Show Gist options
  • Save ger86/22ebed5c5120c3a3fd0ccb9b0576b462 to your computer and use it in GitHub Desktop.
Save ger86/22ebed5c5120c3a3fd0ccb9b0576b462 to your computer and use it in GitHub Desktop.
<?php
/**
* @ORM\Entity
*/
class Post
{
...
/**
* @ORM\OneToMany(targetEntity="App\Entity\Comment", mappedBy="post", orphanRemoval=true)
*/
private $comments;
/**
* @ORM\OneToMany(targetEntity="App\Entity\History\HistoryRecord", mappedBy="post", orphanRemoval=true)
*/
private $historyRecords;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment