mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/shipping-portal.git
synced 2026-08-19 04:24:12 +00:00
18 lines
266 B
PHP
18 lines
266 B
PHP
<?php
|
|
|
|
namespace App\Classes\ValueObjects\Constants;
|
|
|
|
final class PerfexCRMStatus {
|
|
|
|
public const NOT_STARTED = 1;
|
|
|
|
public const AWAITING_FEEDBACK = 2;
|
|
|
|
public const TESTING = 3;
|
|
|
|
public const IN_PROGRESS = 4;
|
|
|
|
public const COMPLETED = 5;
|
|
|
|
}
|