Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /** @OneToMany(targetEntity="Address", mappedBy="contact", orphanRemoval=true) */
- private $addresses;
- public function __construct()
- {
- $this->addresses = new ArrayCollection();
- }
- public function setAdderss($address)
- {
- $this->addresses[] = $address
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement