Skip to content
This repository has been archived by the owner on Nov 13, 2024. It is now read-only.

Commit

Permalink
Fix bad merge
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisfromthelc committed Oct 30, 2024
1 parent c305fb7 commit c0b9b90
Showing 1 changed file with 0 additions and 61 deletions.
61 changes: 0 additions & 61 deletions src/inc/abuse-decisions.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,6 @@ function process_sift_decision_received( $return_value, $decision_id, $entity_id
}
add_filter( 'sift_decision_received', __NAMESPACE__ . '\process_sift_decision_received', 10, 5 );

/**
* Handle the 'trust_list_payment_abuse' decision.
*
* @param integer $user_id The ID of the user.
*
* @return void
*/
/**
* Handle the 'trust_list_payment_abuse' decision.
*
Expand All @@ -82,15 +75,6 @@ function handle_trust_list_payment_abuse( $user_id ) {
unblock_user_from_purchases( $user_id );
}

/**
* Handle the 'looks_good_payment_abuse' decision.
*
* @param integer $user_id The ID of the user.
*
* @return void
*/
}

/**
* Handle the 'looks_good_payment_abuse' decision.
*
Expand All @@ -102,15 +86,6 @@ function handle_looks_good_payment_abuse( $user_id ) {
unblock_user_from_purchases( $user_id );
}

/**
* Handle the 'not_likely_fraud_payment_abuse' decision.
*
* @param integer $user_id The ID of the user.
*
* @return void
*/
}

/**
* Handle the 'not_likely_fraud_payment_abuse' decision.
*
Expand All @@ -122,15 +97,6 @@ function handle_not_likely_fraud_payment_abuse( $user_id ) {
unblock_user_from_purchases( $user_id );
}

/**
* Handle the 'likely_fraud_refundno_renew_payment_abuse' decision.
*
* @param integer $user_id The ID of the user.
*
* @return void
*/
}

/**
* Handle the 'likely_fraud_refundno_renew_payment_abuse' decision.
*
Expand All @@ -146,15 +112,6 @@ function handle_likely_fraud_refundno_renew_payment_abuse( $user_id ) {
display_sgdc_error( 'You are blocked from making purchases due to a recent fraud review. SGDC Error OYBPXRQ' );
}

/**
* Handle the 'likely_fraud_keep_purchases_payment_abuse' decision.
*
* @param integer $user_id The ID of the user.
*
* @return void
*/
}

/**
* Handle the 'likely_fraud_keep_purchases_payment_abuse' decision.
*
Expand All @@ -167,15 +124,6 @@ function handle_likely_fraud_keep_purchases_payment_abuse( $user_id ) {
display_sgdc_error( 'You are blocked from making purchases due to a recent fraud review. SGDC Error OYBPXRQ' );
}

/**
* Handle the 'fraud_payment_abuse' decision.
*
* @param integer $user_id The ID of the user.
*
* @return void
*/
}

/**
* Handle the 'fraud_payment_abuse' decision.
*
Expand All @@ -192,15 +140,6 @@ function handle_fraud_payment_abuse( $user_id ) {
force_user_logout( $user_id );
}

/**
* Handle the 'block_wo_review_payment_abuse' decision.
*
* @param integer $user_id The ID of the user.
*
* @return void
*/
}

/**
* Handle the 'block_wo_review_payment_abuse' decision.
*
Expand Down

0 comments on commit c0b9b90

Please sign in to comment.