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