mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/portal.git
synced 2026-08-20 04:53:59 +00:00
18 lines
244 B
PHP
18 lines
244 B
PHP
<?php
|
|
|
|
namespace App\Classes\ValueObjects\Constants;
|
|
|
|
final class OrderStatus {
|
|
|
|
public const PROCESSING = 0;
|
|
|
|
public const SHIPPING = 1;
|
|
|
|
public const RECEIVING = 2;
|
|
|
|
public const COMPLETE = 3;
|
|
|
|
public const CANCEL = 4;
|
|
|
|
}
|