| Total Complexity | 1 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | final class Status |
||
| 18 | { |
||
| 19 | const ACTIVE = 1; |
||
| 20 | const WAITING_FOR_VALIDATION = 2; |
||
| 21 | const SUSPENDED = 3; |
||
| 22 | const TERMINATED = 4; |
||
| 23 | const CANCELED = 5; |
||
| 24 | const IN_PAYMENT = 6; |
||
| 25 | const REFUNDED = 7; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @return Array All subscription statuses. |
||
| 29 | */ |
||
| 30 | public static function all() |
||
| 43 |