Nikita Popov
|
902d64390e
|
Deprecate implicit dynamic properties
Writing to a proprety that hasn't been declared is deprecated,
unless the class uses the #[AllowDynamicProperties] attribute or
defines __get()/__set().
RFC: https://wiki.php.net/rfc/deprecate_dynamic_properties
|
2021-11-26 14:10:11 +01:00 |
|
Dmitry Stogov
|
72c3ededed
|
Change the order of properties used for var_dump(), serialize(), comparison, etc.
Now properties are ordered according to their layout in zend_object structure.
|
2021-03-01 13:29:49 +03:00 |
|
Nikita Popov
|
e8430b592f
|
Fixed bug #79862
While normally a private property in the active scope would take
priority, we should not use this if it has the wrong "staticness".
|
2020-07-15 14:59:55 +02:00 |
|