Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #63956


Ignore:
Timestamp:
09/11/2025 12:07:46 PM (4 months ago)
Author:
swissspidy
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #63956 – Description

    initial v1  
    33----
    44
    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
    66
    77The solution is to call these functions only conditionally (e.g. `if (\PHP_VERSION_ID < 80100) { $reflection->setAccessible(true); }`)