WebhookTesting.php 328 B

1234567891011
  1. <?php
  2. namespace Braintree;
  3. class WebhookTesting
  4. {
  5. public static function sampleNotification($kind, $id, $sourceMerchantId = null)
  6. {
  7. return Configuration::gateway()->webhookTesting()->sampleNotification($kind, $id, $sourceMerchantId);
  8. }
  9. }
  10. class_alias('Braintree\WebhookTesting', 'Braintree_WebhookTesting');