PropertyHookType 枚举

(PHP 8 >= 8.4)

简介

PropertyHookType 枚举列出了属性挂钩的合法类型。

注解摘要

enum PropertyHookType
{
case Get = 'get' ; // 表示 get 挂钩。

case Set = 'set' ; // 表示 set 挂钩。

}