15 lines
251 B
PHP
15 lines
251 B
PHP
<?php
|
|
|
|
namespace App\Constants;
|
|
|
|
use Hyperf\Constants\AbstractConstants;
|
|
use function Hyperf\Support\env;
|
|
|
|
#[Constants]
|
|
class Config extends AbstractConstants
|
|
{
|
|
public static function getDomain()
|
|
{
|
|
return env('APP_DOMAIN', '');
|
|
}
|
|
} |