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()
7575 public function isProtected ()
7676 {
7777 }
78+ #[\Since('8.4 ' )]
79+ public function isPrivateSet (): bool
80+ {
81+ }
82+ #[\Since('8.4 ' )]
83+ public function isProtectedSet (): bool
84+ {
85+ }
7886 /**
7987 * @tentative-return-type
8088 * @return bool
@@ -226,4 +234,10 @@ public function getHook(PropertyHookType $type): ?ReflectionMethod
226234 /** @cvalue ZEND_ACC_ABSTRACT */
227235 #[\Since('8.4 ' )]
228236 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 ;
229243}
You can’t perform that action at this time.
0 commit comments