_get(), 't_outapp_order', array( 'order_id' => $orderId, ) ); return $row; } public static function markFinished($orderId) { SqlHelper::update( myself()->_get(), 't_outapp_order', array( 'order_id' => $orderId, ), array( 'state' => self::FINISHED_STATE, ) ); } public static function markFailed($orderId) { SqlHelper::update( myself()->_get(), 't_outapp_order', array( 'order_id' => $orderId, ), array( 'state' => self::FAILED_STATE, ) ); } }