We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf1c7ee commit 5a2c168Copy full SHA for 5a2c168
stubs/ext/reflection/ReflectionProperty.php
@@ -75,6 +75,14 @@ public function isPrivate()
75
public function isProtected()
76
{
77
}
78
+ #[\Since('8.4')]
79
+ public function isPrivateSet(): bool
80
+ {
81
+ }
82
83
+ public function isProtectedSet(): bool
84
85
86
/**
87
* @tentative-return-type
88
* @return bool
@@ -226,4 +234,10 @@ public function getHook(PropertyHookType $type): ?ReflectionMethod
226
234
/** @cvalue ZEND_ACC_ABSTRACT */
227
235
#[\Since('8.4')]
228
236
public const int IS_ABSTRACT = UNKNOWN;
237
+ /** @cvalue ZEND_ACC_PROTECTED_SET */
238
239
+ public const int IS_PROTECTED_SET = UNKNOWN;
240
+ /** @cvalue ZEND_ACC_PRIVATE_SET */
241
242
+ public const int IS_PRIVATE_SET = UNKNOWN;
229
243
0 commit comments