Introduction
PHP Manual
PHP Manual»Reflection»PropertyHookType

The PropertyHookType Enum

(PHP 8 >= 8.4)

The PropertyHookType enum lists the legal types of property hook.

enum PropertyHookType
{
case Get = 'get' ; // Indicates a get hook.

case Set = 'set' ; // Indicates a set hook.

}
To Top