newsletter = $newsletter; $this->queue = $queue; $this->click = $click; $this->orderId = $orderId; $this->orderCurrency = $orderCurrency; $this->orderPriceTotal = $orderPriceTotal; } /** * @return NewsletterEntity|null */ public function getNewsletter() { $this->safelyLoadToOneAssociation('newsletter'); return $this->newsletter; } /** * @return SendingQueueEntity|null */ public function getQueue() { $this->safelyLoadToOneAssociation('queue'); return $this->queue; } /** * @return SubscriberEntity|null */ public function getSubscriber() { $this->safelyLoadToOneAssociation('subscriber'); return $this->subscriber; } /** * @return StatisticsClickEntity|null */ public function getClick() { $this->safelyLoadToOneAssociation('click'); return $this->click; } /** * @return int */ public function getOrderId() { return $this->orderId; } }