init
- 框架初始化 - 安装插件 - 修复PHP8.4报错
This commit is contained in:
27
addons/shopro/facade/Base.php
Normal file
27
addons/shopro/facade/Base.php
Normal file
@@ -0,0 +1,27 @@
|
||||
<?php
|
||||
|
||||
namespace addons\shopro\facade;
|
||||
|
||||
/**
|
||||
* @see RedisManager
|
||||
*
|
||||
*/
|
||||
class Base
|
||||
{
|
||||
|
||||
public static function getFacadeClass()
|
||||
{
|
||||
error_stop('facade 初始化失败');
|
||||
}
|
||||
|
||||
public static function instance()
|
||||
{
|
||||
return static::getFacadeClass();
|
||||
}
|
||||
|
||||
public static function __callStatic($funcname, $arguments)
|
||||
{
|
||||
return static::instance()->{$funcname}(...$arguments);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user