Changes between Initial Version and Version 2 of Ticket #56034
- Timestamp:
- 06/22/2022 02:09:09 PM (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #56034 – Description
initial v2 72 72 || 2. || Known, named, dynamic property || Declare the property on the (parent) class || 73 73 || 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` || 75 75 76 76 Note: 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.