mirror of
https://gh.wpcy.net/https://github.com/netcccyun/dnsmgr.git
synced 2026-05-31 00:15:01 +08:00
17 lines
320 B
PHP
17 lines
320 B
PHP
<?php
|
||
namespace app\lib;
|
||
|
||
use think\Facade;
|
||
|
||
class NewDb extends Facade
|
||
{
|
||
/**
|
||
* 获取当前Facade对应类名(或者已经绑定的容器对象标识)
|
||
* @access protected
|
||
* @return string
|
||
*/
|
||
protected static function getFacadeClass()
|
||
{
|
||
return 'app\lib\NewDbManager';
|
||
}
|
||
}
|