Commit be6038a35ef for php.net
commit be6038a35ef065e99f5f0bc9c916d60e509a47f1
Author: Ilija Tovilo <ilija.tovilo@me.com>
Date: Fri Feb 27 15:46:48 2026 +0100
[skip ci] Also add ReflectionProperty::is{Readable,Writable}() to NEWS
Also fix typo (missing and), and align message with rest of the doc.
diff --git a/NEWS b/NEWS
index fd2f2fa82ec..cf36b1bad7c 100644
--- a/NEWS
+++ b/NEWS
@@ -87,6 +87,8 @@ PHP NEWS
. Fixed bug GH-20217 (ReflectionClass::isIterable() incorrectly returns true
for classes with property hooks). (alexandre-daubois)
. Added ReflectionConstant::inNamespace(). (Khaled Alam)
+ . Added ReflectionProperty::isReadable() and ReflectionProperty::isWritable().
+ (ilutov)
- Session:
. Fixed bug 71162 (updateTimestamp never called when session data is empty).
diff --git a/UPGRADING b/UPGRADING
index 151b27b2267..7e47d0ba481 100644
--- a/UPGRADING
+++ b/UPGRADING
@@ -134,8 +134,8 @@ PHP 8.6 UPGRADE NOTES
- Reflection:
. ReflectionConstant::inNamespace()
- . ReflectionProperty::isReadable() ReflectionProperty::isWritable() were
- added.
+ . Added ReflectionProperty::isReadable() and ReflectionProperty::isWritable().
+ RFC: https://wiki.php.net/rfc/isreadable-iswriteable
- Standard:
. `clamp()` returns the given value if in range, else return the nearest