Skip to content
Snippets Groups Projects

[#2904205] Added Event Dispatcher for modifying rate requests before sending....

5 files
+ 199
11
Compare changes
  • Side-by-side
  • Inline
Files
5
+ 17
0
<?php
namespace Drupal\commerce_ups\Event;
/**
* Defines events for the Commerce UPS module.
*/
final class CommerceUPSEvents {
/**
* Name of the event fired to allow altering the rate request sent to UPS.
* @Event
* @see \Drupal\commerce_ups\Event\RateRequestEvent
*/
const BEFORE_RATE_REQUEST = 'commerce_ups.before_rate_request';
}
\ No newline at end of file
Loading