mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-19 12:33:56 +00:00
17 lines
259 B
PHP
17 lines
259 B
PHP
<?php
|
|
|
|
namespace App\Classes\ValueObjects\Constants;
|
|
|
|
final class PerfexCRMProjectStatus {
|
|
|
|
public const NOT_STARTED = 1;
|
|
|
|
public const IN_PROGRESS = 2;
|
|
|
|
public const ON_HOLD = 3;
|
|
|
|
public const FINISHED = 4;
|
|
|
|
public const CANCELLED = 5;
|
|
}
|