Advertisement
Guest User

Untitled

a guest
May 7th, 2019
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.23 KB | None | 0 0
  1.     public function addImage(TicketImage $image): Ticket
  2.     {
  3.         $this->images->add($image);
  4.         $image->setTicket($this); // works
  5.         $image->setTicket($this->getChild()); // doesn't work
  6.  
  7.         return $this;
  8.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement