Пример #1
0
 /**
  * Get updated orders by id
  *
  * @return array
  */
 public function buildOrdersUpdateById($uidString)
 {
     $uids = DataHelper::explodeUids($uidString);
     $query = $this->rule->getSQL('orders_update_uid');
     $handler = $this->rule->getHandler('OrdersUpdateHandler');
     $this->sql = $this->container->db->prepare($query);
     $this->sql->bindParam(':orderIds', $uids);
     return $this->build($handler);
 }