mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-19 04:23:55 +00:00
15 lines
220 B
PHP
15 lines
220 B
PHP
<?php
|
|
|
|
namespace App\Classes\ValueObjects\Constants;
|
|
|
|
final class PerfexCRMInvoiceStatus {
|
|
|
|
public const UNPAID = 1;
|
|
|
|
public const PAID = 2;
|
|
|
|
public const PARTIALLY_PAID = 3;
|
|
|
|
public const OVERDUE = 4;
|
|
}
|