/var/www/qr4y.com/www/wp-content/plugins/elementor-pro/modules/payments/classes
Edit: /var/www/qr4y.com/www/wp-content/plugins/elementor-pro/modules/payments/classes/stripe-handler.php (948B)
'Bearer ' . $secret_key ];
return wp_remote_get( self::STRIPE_ENDPOINT_URL . $endpoint, [
'headers' => $headers,
'body' => $body,
] );
}
/**
* @param $headers
* @param $body
* @param $endpoint
* @return array|\WP_Error
*/
public function post( $headers, $body, $endpoint ) {
return wp_remote_post( self::STRIPE_ENDPOINT_URL . $endpoint, [
'headers' => $headers,
'body' => $body,
] );
}
}