예제 #1
0
파일: order.php 프로젝트: samdubey/ads2
 public function getItems()
 {
     $items = OrderItem::findByOrder($this->id);
     if ($items) {
         return $items;
     }
     return null;
 }