festival; } /** * @param mixed $festival */ public function setFestival( $festival ) { $this->festival = $festival; } /** * @ORM\ManyToOne(targetEntity="AppBundle\Entity\User", inversedBy="products") */ private $user; /** * @return mixed */ public function getUser() { return $this->user; } /** * @param mixed $user */ public function setUser( $user ) { $this->user = $user; } /** * @return mixed */ public function getAmount() { return $this->amount; } /** * @param mixed $amount */ public function setAmount( $amount ) { $this->amount = $amount; } /** * @return mixed */ public function getId() { return $this->id; } /** * @param mixed $id */ public function setId( $id ) { $this->id = $id; } /** * @return mixed */ public function getProducts() { return $this->products; } /** * @param mixed $products */ public function setProducts( $products ) { $this->products = $products; } /** * @return mixed */ public function getDate() { return $this->date; } /** * @param \DateTime $date */ public function setDate( \DateTime $date ) { $this->date = $date; } }