diff --git a/src/Payments/PaymentStatus.php b/src/Payments/PaymentStatus.php index 21928c4f..a45a3c59 100644 --- a/src/Payments/PaymentStatus.php +++ b/src/Payments/PaymentStatus.php @@ -70,16 +70,6 @@ class PaymentStatus { */ const REFUNDED = 'Refunded'; - /** - * Status indicator for reserved - * - * @var string - * @todo Eliminate the use of `RESERVED`. - * @link https://github.com/pronamic/wp-pay-core/issues/66 - * @deprecated Use `AUTHORIZED` instead. - */ - const RESERVED = 'Reserved'; - /** * Status indicator for completed * diff --git a/src/Payments/PaymentsDataStoreCPT.php b/src/Payments/PaymentsDataStoreCPT.php index d95df938..4de2b017 100644 --- a/src/Payments/PaymentsDataStoreCPT.php +++ b/src/Payments/PaymentsDataStoreCPT.php @@ -66,7 +66,6 @@ public function __construct() { PaymentStatus::EXPIRED => 'payment_expired', PaymentStatus::FAILURE => 'payment_failed', PaymentStatus::REFUNDED => 'payment_refunded', - PaymentStatus::RESERVED => 'payment_reserved', PaymentStatus::SUCCESS => 'payment_completed', PaymentStatus::OPEN => 'payment_pending', PaymentStatus::ON_HOLD => 'payment_on_hold',