Make WordPress Core

Changes between Initial Version and Version 2 of Ticket #56034


Ignore:
Timestamp:
06/22/2022 02:09:09 PM (4 years ago)
Author:
jrf
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #56034 – Description

    initial v2  
    7272|| 2. || Known, named, dynamic property || Declare the property on the (parent) class ||
    7373|| 3. || Known use of unknown dynamic properties || Declare the full set of magic methods on a class (preferred) or let the class extend `stdClass` (discouraged) ||
    74 || 4. || Unknown use of unknown dynamic properties || Use the `#[AllowDynamicProperties] attribute on the (parent) class and/or declare the full set of magic methods on a class and/or let the class extend `stdClass` ||
     74|| 4. || Unknown use of unknown dynamic properties || Use the `#[AllowDynamicProperties]` attribute on the (parent) class and/or declare the full set of magic methods on a class and/or let the class extend `stdClass` ||
    7575
    7676Note: the `#[AllowDynamicProperties]` attribute is expected to be a temporary solution and it is expected that support for the attribute will be removed at some point in the future.