Reflection/PropertyHookType.php (9 lines of code) (raw):

<?php /** * @since 8.4 */ enum PropertyHookType implements BackedEnum, UnitEnum { case Get = 'get'; case Set = 'set'; public static function cases(): array {} public static function from(int|string $value): static {} public static function tryFrom(int|string $value): ?static {} }