@@ -10,67 +10,67 @@ final class EcpPaymentStatus
1010 * Payment completed successfully
1111 * @var string
1212 */
13- public const SUCCESS = 'success ' ;
13+ const SUCCESS = 'success ' ;
1414
1515 /**
1616 * An internal error occurred
1717 * @var string
1818 */
19- public const INTERNAL_ERROR = 'internal error ' ;
19+ const INTERNAL_ERROR = 'internal error ' ;
2020
2121 /**
2222 * The payment request has expired
2323 * @var string
2424 */
25- public const EXPIRED = 'expired ' ;
25+ const EXPIRED = 'expired ' ;
2626
2727 /**
2828 * Awaiting customer actions, if the customer may perform additional attempts to make a payment
2929 * @var string
3030 */
31- public const AWAITING_CUSTOMER = 'awaiting customer ' ;
31+ const AWAITING_CUSTOMER = 'awaiting customer ' ;
3232
3333 /**
3434 * The payment was declined
3535 * @var string
3636 */
37- public const DECLINE = 'decline ' ;
37+ const DECLINE = 'decline ' ;
3838
3939 /**
4040 * An external error occurred during the payment process
4141 * @var string
4242 */
43- public const EXTERNAL_ERROR = 'external error ' ;
43+ const EXTERNAL_ERROR = 'external error ' ;
4444
4545 /**
4646 * Awaiting a request with the result of a 3-D Secure Verification
4747 * @var string
4848 */
49- public const AWAITING_3DS_RESULT = 'awaiting 3ds result ' ;
49+ const AWAITING_3DS_RESULT = 'awaiting 3ds result ' ;
5050
5151 /**
5252 * Awaiting customer return after redirecting the customer to an external provider system
5353 * @var string
5454 */
55- public const AWAITING_REDIRECT_RESULT = 'awaiting redirect result ' ;
55+ const AWAITING_REDIRECT_RESULT = 'awaiting redirect result ' ;
5656
5757 /**
5858 * Awaiting additional parameters
5959 * @var string
6060 */
61- public const AWAITING_CLARIFICATION = 'awaiting clarification ' ;
61+ const AWAITING_CLARIFICATION = 'awaiting clarification ' ;
6262
6363 /**
6464 * Awaiting request for withdrawal of funds (capture) or cancellation of payment (cancel) from your project
6565 * @var string
6666 */
67- public const AWAITING_CAPTURE = 'awaiting capture ' ;
67+ const AWAITING_CAPTURE = 'awaiting capture ' ;
6868
6969 /**
7070 * Holding of funds (produced on authorization request) is cancelled
7171 * @var string
7272 */
73- public const CANCELED = 'canceled ' ;
73+ const CANCELED = 'canceled ' ;
7474
7575 /**
7676 * @deprecated use Callback::CANCELED instead
@@ -79,37 +79,37 @@ final class EcpPaymentStatus
7979 * Holding of funds (produced on authorization request) is cancelled
8080 * @var string
8181 */
82- public const CANCELLED = self ::CANCELED ;
82+ const CANCELLED = self ::CANCELED ;
8383
8484 /**
8585 * Successfully completed the full refund after a successful payment
8686 * @var string
8787 */
88- public const REFUNDED = 'refunded ' ;
88+ const REFUNDED = 'refunded ' ;
8989
9090 /**
9191 * Completed partial refund after a successful payment
9292 * @var string
9393 */
94- public const PARTIALLY_REFUNDED = 'partially refunded ' ;
94+ const PARTIALLY_REFUNDED = 'partially refunded ' ;
9595
9696 /**
9797 * Payment processing at Gate
9898 * @var string
9999 */
100- public const PROCESSING = 'processing ' ;
100+ const PROCESSING = 'processing ' ;
101101
102102 /**
103103 * An error occurred while reviewing data for payment processing
104104 * @var string
105105 */
106- public const ERROR = 'error ' ;
106+ const ERROR = 'error ' ;
107107
108108 /**
109109 * Refund after a successful payment before closing of the business day
110110 * @var string
111111 */
112- public const REVERSED = 'reversed ' ;
112+ const REVERSED = 'reversed ' ;
113113
114114 public static function values (): array
115115 {
0 commit comments