mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/shipping-portal.git
synced 2026-08-19 04:24:12 +00:00
19 lines
279 B
PHP
19 lines
279 B
PHP
<?php
|
|
|
|
namespace App\Classes\ValueObjects\Constants;
|
|
|
|
final class WarehouseReferences {
|
|
|
|
public const GUANG_ZHOU = 'GZ-V01';
|
|
|
|
public const YIWU = 'YW-V01';
|
|
|
|
public const KLANG = 'KL-V01';
|
|
|
|
public const SABAH = 'SB-V01';
|
|
|
|
public const SARAWAK = 'SRW-V01';
|
|
|
|
|
|
}
|