Changes between Initial Version and Version 1 of Ticket #63956
- Timestamp:
- 09/11/2025 12:07:46 PM (4 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #63956 – Description
initial v1 3 3 ---- 4 4 5 `ReflectionProperty::setAccessible()` and similar are deprecated since 8.5, as they have no effect since 8.1. 5 `ReflectionProperty::setAccessible()` and similar are deprecated since 8.5, as they have no effect since 8.1. See https://wiki.php.net/rfc/deprecations_php_8_5#deprecate_reflectionsetaccessible 6 6 7 7 The solution is to call these functions only conditionally (e.g. `if (\PHP_VERSION_ID < 80100) { $reflection->setAccessible(true); }`)