Skip to content

Commit 32a2892

Browse files
committed
Update stubs
1 parent 16dafad commit 32a2892

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

stubs/ext/reflection/ReflectionProperty.php

+7
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,10 @@ public function hasHook(PropertyHookType $type): bool
201201
public function getHook(PropertyHookType $type): ?ReflectionMethod
202202
{
203203
}
204+
#[\Since('8.4')]
205+
public function isFinal(): bool
206+
{
207+
}
204208
/**
205209
* @var int
206210
* @cvalue ZEND_ACC_STATIC
@@ -260,4 +264,7 @@ public function getHook(PropertyHookType $type): ?ReflectionMethod
260264
/** @cvalue ZEND_ACC_PRIVATE_SET */
261265
#[\Since('8.4')]
262266
public const int IS_PRIVATE_SET = UNKNOWN;
267+
/** @cvalue ZEND_ACC_FINAL */
268+
#[\Since('8.4')]
269+
public const int IS_FINAL = UNKNOWN;
263270
}

0 commit comments

Comments
 (0)