mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-24 15:04:19 +00:00
23 lines
371 B
PHP
23 lines
371 B
PHP
<?php
|
|
|
|
namespace App\Classes\ValueObjects\Constants;
|
|
|
|
final class ApprovalStatus {
|
|
|
|
public const PENDING_VERIFICATION = 0;
|
|
|
|
public const ACTIVE = 1;
|
|
|
|
public const SUSPENDED = 2;
|
|
|
|
public const REJECTED = 3;
|
|
|
|
public const STATUS = [
|
|
0 => 'Pending Verification',
|
|
1 => 'Active',
|
|
2 => 'Suspended',
|
|
3 => 'Rejected'
|
|
];
|
|
|
|
}
|