/** * @return OrderProduct[] */ public function getOrderedProducts() { if ($this->products === null) { $this->products = OrderProduct::getAll(array('order_id' => $this->id)); } return $this->products; }