mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/portal.git
synced 2026-08-23 06:24:21 +00:00
16 lines
310 B
PHP
16 lines
310 B
PHP
<?php
|
|
|
|
namespace App\Classes\ValueObjects\Constants;
|
|
|
|
use Config;
|
|
|
|
final class UnityConfig {
|
|
|
|
|
|
public const AUTH_METHOD = Config::get('unity.default_auth');
|
|
|
|
public const API_BASE_URL = Config::get('unity.url');
|
|
|
|
public const CREATE_ENTITY_ENDPOINT = Config::get('unity.create_entity_endpoint');
|
|
}
|