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
313 B
PHTML
16 lines
313 B
PHTML
2 years ago
|
<?php
|
||
|
|
||
|
namespace App\Helper\Efps;
|
||
|
|
||
|
class Config
|
||
|
{
|
||
|
private static $params = [
|
||
|
'app_id' => '',
|
||
|
'secret_key' => 'cea6f34bea8640dea91fd8b7a926a9a5',
|
||
|
'base_url' => 'https://efps.epylinks.cn',
|
||
|
];
|
||
|
|
||
|
public static function get($key) {
|
||
|
return self::$params[$key] ?: null;
|
||
|
}
|
||
|
}
|