Пример #1
0
 /**
  * @return OrderProduct[]
  */
 public function getOrderedProducts()
 {
     if ($this->products === null) {
         $this->products = OrderProduct::getAll(array('order_id' => $this->id));
     }
     return $this->products;
 }