mirror of
https://gitlab.com/uldvstar/exchange-2.0.git
synced 2026-08-20 13:04:59 +00:00
12 lines
142 B
PHP
12 lines
142 B
PHP
<?php
|
|
|
|
namespace App\Classes\ValueObjects\Constants;
|
|
|
|
final class Countries {
|
|
|
|
public const MALAYSIA = 1;
|
|
|
|
public const CHINA = 2;
|
|
|
|
}
|