Skip to content
Snippets Groups Projects
Unverified Commit 0e97f58e authored by mattwire's avatar mattwire Committed by GitHub
Browse files

Merge pull request #1 from progressivetech/use-core-ipn-class

refactored IPN to use base IPN class from civicrm
parents fce5f136 9a80a8ea
No related branches found
No related tags found
No related merge requests found
......@@ -912,4 +912,15 @@ class CRM_Core_Payment_Stripe extends CRM_Core_Payment {
}
}
/**
* Process incoming notification.
*/
static public function handlePaymentNotification() {
$data_raw = file_get_contents("php://input");
$data = json_decode($data_raw);
$ipnClass = new CRM_Core_Payment_StripeIPN($data);
$ipnClass->main();
}
}
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment