You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
410 B
PHP
21 lines
410 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Helper\OmiPay;
|
|
|
|
use App\Helper\StringHelper;
|
|
use App\Helper\TimeHelper;
|
|
|
|
class Config
|
|
{
|
|
private static $params = [
|
|
'app_id' => '30042195760',
|
|
'secret_key' => 'cea6f34bea8640dea91fd8b7a926a9a5',
|
|
'base_url' => 'https://www.omipay.com.cn',
|
|
];
|
|
|
|
public static function get($key) {
|
|
return self::$params[$key] ?: null;
|
|
}
|
|
} |