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.

15 lines
324 B
PHP

<?php
namespace Org\QzlPay;
class Config
{
public static $params = [
'baseUrl' => 'http://game.quzhilian.net',
'mchNo' => '68822023041910000101',
'paySecret' => '040f0a9dd7d640f1b9270a0931aa8230',
];
public static function get($key) {
return self::$params[$key] ?? null;
}
}