mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/shipping-portal.git
synced 2026-08-20 13:04:48 +00:00
14 lines
175 B
PHP
14 lines
175 B
PHP
<?php
|
|
|
|
namespace App\Classes\ValueObjects\Constants;
|
|
|
|
final class UnityStatus {
|
|
|
|
public const PENDING = 9;
|
|
|
|
public const ACTIVE = 1;
|
|
|
|
public const DELETED = 2;
|
|
|
|
}
|