PHP8.2 fixes, fix dynamic property creation (#3258)
as of PHP8.2, dynamic property creation is no longer allowed by default (with the exception of StdClass), and triggers E_DEPRECATED, ref https://wiki.php.net/rfc/deprecate_dynamic_properties
violations were detected with PHP-Rector using CompleteDynamicPropertiesRector ( https://github.com/rectorphp/rector/blob/main/rules/CodeQuality/Rector/Class_/CompleteDynamicPropertiesRector.php )