-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathStatus.php
32 lines (28 loc) · 948 Bytes
/
Status.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php
/**
* PHP version 5.4 and 8
*
* @category Enum
* @package Payever\Payments
* @author payever GmbH <[email protected]>
* @author Andrey Puhovsky <[email protected]>
* @copyright 2017-2021 payever GmbH
* @license MIT <https://opensource.org/licenses/MIT>
* @link https://docs.payever.org/shopsystems/api/getting-started
*/
namespace Payever\ExternalIntegration\Payments\Enum;
use Payever\ExternalIntegration\Core\Base\EnumerableConstants;
/**
* This class represents Statuses
*/
class Status extends EnumerableConstants
{
const STATUS_NEW = 'STATUS_NEW';
const STATUS_IN_PROCESS = 'STATUS_IN_PROCESS';
const STATUS_ACCEPTED = 'STATUS_ACCEPTED';
const STATUS_PAID = 'STATUS_PAID';
const STATUS_DECLINED = 'STATUS_DECLINED';
const STATUS_REFUNDED = 'STATUS_REFUNDED';
const STATUS_FAILED = 'STATUS_FAILED';
const STATUS_CANCELLED = 'STATUS_CANCELLED';
}