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