mirror of
https://github.com/zhamao-robot/zhamao-framework.git
synced 2026-03-17 20:54:52 +08:00
add Macroable (build 440)
This commit is contained in:
parent
c897da29c6
commit
f0f120bd32
@ -28,7 +28,7 @@ use ZM\Exception\InitException;
|
||||
|
||||
class ConsoleApplication extends Application
|
||||
{
|
||||
public const VERSION_ID = 439;
|
||||
public const VERSION_ID = 440;
|
||||
|
||||
public const VERSION = '2.7.0-beta4';
|
||||
|
||||
|
||||
15
src/ZM/Exception/MethodNotFoundException.php
Normal file
15
src/ZM/Exception/MethodNotFoundException.php
Normal file
@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace ZM\Exception;
|
||||
|
||||
use Throwable;
|
||||
|
||||
class MethodNotFoundException extends ZMException
|
||||
{
|
||||
public function __construct($message = '', $code = 0, Throwable $previous = null)
|
||||
{
|
||||
parent::__construct(zm_internal_errcode('E00073') . $message, $code, $previous);
|
||||
}
|
||||
}
|
||||
45
src/ZM/Utils/Macroable.php
Normal file
45
src/ZM/Utils/Macroable.php
Normal file
@ -0,0 +1,45 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace ZM\Utils;
|
||||
|
||||
use Closure;
|
||||
use ZM\Exception\MethodNotFoundException;
|
||||
|
||||
trait Macroable
|
||||
{
|
||||
protected static $macros = [];
|
||||
|
||||
public static function __callStatic($method, $parameters)
|
||||
{
|
||||
if (!static::hasMacro($method)) {
|
||||
throw new MethodNotFoundException("Method {$method} does not exist.");
|
||||
}
|
||||
if (static::$macros[$method] instanceof Closure) {
|
||||
return call_user_func_array(Closure::bind(static::$macros[$method], null, static::class), $parameters);
|
||||
}
|
||||
return call_user_func_array(static::$macros[$method], $parameters);
|
||||
}
|
||||
|
||||
public function __call($method, $parameters)
|
||||
{
|
||||
if (!static::hasMacro($method)) {
|
||||
throw new MethodNotFoundException("Method {$method} does not exist.");
|
||||
}
|
||||
if (static::$macros[$method] instanceof Closure) {
|
||||
return call_user_func_array(static::$macros[$method]->bindTo($this, static::class), $parameters);
|
||||
}
|
||||
return call_user_func_array(static::$macros[$method], $parameters);
|
||||
}
|
||||
|
||||
public static function macro($name, callable $macro)
|
||||
{
|
||||
static::$macros[$name] = $macro;
|
||||
}
|
||||
|
||||
public static function hasMacro($name)
|
||||
{
|
||||
return isset(static::$macros[$name]);
|
||||
}
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user