Skip to content

Commit 5a2c168

Browse files
committed
Update stubs
1 parent cf1c7ee commit 5a2c168

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

stubs/ext/reflection/ReflectionProperty.php

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)