Exemplo n.º 1
0
 public static function findById($id)
 {
     return Order::findById($id);
 }
Exemplo n.º 2
0
 public function getChildOrders()
 {
     return $this->hasMany(Order::className(), ['parentOrderId' => 'id']);
 }