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.
16 lines
343 B
PHP
16 lines
343 B
PHP
<?php
|
|
namespace Org\Kudian;
|
|
|
|
class Config
|
|
{
|
|
private static $params = [
|
|
'base_url' => 'https://pay.kudianvip.com',
|
|
'mch_id' => 'KP10009694',
|
|
'secret_key' => 'q5zZyyA071zS0SZR6xcz0gP0fFhtojqq',
|
|
];
|
|
|
|
public static function get($key, $default = null)
|
|
{
|
|
return self::$params[$key] ?? $default;
|
|
}
|
|
} |