You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixes deprecation notices about dynamic properties creation (#106)
* Fixes that deprecation notices about dynamic properties creation are
issued when used with PHP8.2 and greater.
Dynamic property creation has been deprecated in PHP8.2 and are likely
to be removed from PHP in an upcoming version.
Since JIRA allows to create custom fields, this will lead to errors in
upcoming PHP versions. Thus a trait was added that allows to create
dynamic properties using magic method `__set`, retrieve them via magic
method `__get` and check their existance via magic method `__isset`.
The trait was only assigned to a couple of classes yet but can be
assigned whenever the need arises.
* Fixes code style issues
0 commit comments