类 AbstractDecorator
事件装饰器子类的通用基类。
属性概要
-
$_callable protected
可调用对象
可调用对象
-
$_options protected
数组
装饰器选项
方法概要
-
__construct() public
构造函数。
-
__invoke() public
调用
-
_call() protected
使用传递的参数调用装饰的可调用对象。
方法详情
__construct() ¶ public
__construct(callable $callable, array<string, mixed> $options = [])
构造函数。
参数
-
callable
$callable 可调用对象。
-
array<string, mixed>
$options optional 装饰器选项。
__invoke() ¶ public
__invoke(): mixed
调用
返回值
混合类型
链接
https://secure.php.net/manual/en/language.oop5.magic.php#object.invoke