mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/portal.git
synced 2026-08-19 12:34:01 +00:00
22 lines
333 B
PHP
22 lines
333 B
PHP
<?php
|
|
|
|
namespace App\Classes\ValueObjects\Constants;
|
|
|
|
final class ApprovalStatus {
|
|
|
|
public const PENDING_SUBMISSION = 0;
|
|
|
|
public const PENDING_VERIFICATION = 1;
|
|
|
|
public const APPROVED = 2;
|
|
|
|
public const COMPLETED = 3;
|
|
|
|
public const REJECTED = 4;
|
|
|
|
public const SUSPENDED = 5;
|
|
|
|
public const EXPIRED = 6;
|
|
|
|
}
|