Last active
February 8, 2019 13:15
-
-
Save ger86/22ebed5c5120c3a3fd0ccb9b0576b462 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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