File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -75,6 +75,14 @@ public function isPrivate()
75
75
public function isProtected ()
76
76
{
77
77
}
78
+ #[\Since('8.4 ' )]
79
+ public function isPrivateSet (): bool
80
+ {
81
+ }
82
+ #[\Since('8.4 ' )]
83
+ public function isProtectedSet (): bool
84
+ {
85
+ }
78
86
/**
79
87
* @tentative-return-type
80
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
+ #[\Since('8.4 ' )]
239
+ public const int IS_PROTECTED_SET = UNKNOWN ;
240
+ /** @cvalue ZEND_ACC_PRIVATE_SET */
241
+ #[\Since('8.4 ' )]
242
+ public const int IS_PRIVATE_SET = UNKNOWN ;
229
243
}
You can’t perform that action at this time.
0 commit comments