-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathKitanoPaymentEvents.php
More file actions
24 lines (17 loc) · 987 Bytes
/
KitanoPaymentEvents.php
File metadata and controls
24 lines (17 loc) · 987 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
namespace Kitano\PaymentBundle;
final class KitanoPaymentEvents
{
const ON_PAYMENT_NOTIFICATION = 'kitano_payment.event.on_payment_notification';
const AFTER_PAYMENT_NOTIFICATION = 'kitano_payment.event.after_payment_notification';
const ON_BACK_TO_SHOP = 'kitano_payment.event.on_back_to_shop';
const AFTER_BACK_TO_SHOP = 'kitano_payment.event.after_back_to_shop';
const ON_AUTHORIZE_AND_CAPTURE = 'kitano_payment.event.on_authorize_and_capture';
const AFTER_AUTHORIZE_AND_CAPTURE = 'kitano_payment.event.after_authorize_and_capture';
const ON_CAPTURE = 'kitano_payment.event.on_capture';
const AFTER_CAPTURE = 'kitano_payment.event.after_capture';
const ON_AUTHORIZE = 'kitano_payment.event.on_authorize';
const AFTER_AUTHORIZE = 'kitano_payment.event.after_authorize';
const ON_RENDER_LINK = 'kitano_payment.event.on_render_link';
const AFTER_RENDER_LINK = 'kitano_payment.event.after_render_link';
}