mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-06 12:25:15 +08:00
Add missing captured status
This commit is contained in:
parent
676216415b
commit
d1af783f34
1 changed files with 2 additions and 0 deletions
|
@ -8,6 +8,7 @@ class AuthorizationStatus
|
|||
{
|
||||
const INTERNAL = 'INTERNAL';
|
||||
const CREATED = 'CREATED';
|
||||
const CAPTURED = 'CAPTURED';
|
||||
const DENIED = 'DENIED';
|
||||
const EXPIRED = 'EXPIRED';
|
||||
const PARTIALLY_CAPTURED = 'PARTIALLY_CAPTURED';
|
||||
|
@ -16,6 +17,7 @@ class AuthorizationStatus
|
|||
const VALID_STATUS = [
|
||||
self::INTERNAL,
|
||||
self::CREATED,
|
||||
self::CAPTURED,
|
||||
self::DENIED,
|
||||
self::EXPIRED,
|
||||
self::PARTIALLY_CAPTURED,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue