When using this library under PHP 8.2 there are a lot of deprecation warnings being thrown for creation of dynamic properties. Some examples;
Deprecated: Creation of dynamic property JiraRestApi\Issue\Reporter::$timeZone is deprecated in /var/www/html/vendor/lesstif/php-jira-rest-client/src/JsonMapperHelper.php on line 25
Deprecated: Creation of dynamic property JiraRestApi\Issue\Reporter::$locale is deprecated in /var/www/html/vendor/lesstif/php-jira-rest-client/src/JsonMapperHelper.php on line 25
Deprecated: Creation of dynamic property JiraRestApi\Issue\Reporter::$groups is deprecated in /var/www/html/vendor/lesstif/php-jira-rest-client/src/JsonMapperHelper.php on line 25
Deprecated: Creation of dynamic property JiraRestApi\Issue\Reporter::$applicationRoles is deprecated in /var/www/html/vendor/lesstif/php-jira-rest-client/src/JsonMapperHelper.php on line 25
Deprecated: Creation of dynamic property JiraRestApi\Issue\Reporter::$expand is deprecated in /var/www/html/vendor/lesstif/php-jira-rest-client/src/JsonMapperHelper.php on line 25
Deprecated: Creation of dynamic property JiraRestApi\Issue\IssueType::$hierarchyLevel is deprecated in /var/www/html/vendor/lesstif/php-jira-rest-client/src/JsonMapperHelper.php on line 25
Deprecated: Creation of dynamic property JiraRestApi\Issue\IssueType::$hierarchyLevel is deprecated in /var/www/html/vendor/lesstif/php-jira-rest-client/src/JsonMapperHelper.php on line 25
Deprecated: Creation of dynamic property JiraRestApi\Issue\IssueType::$hierarchyLevel is deprecated in /var/www/html/vendor/lesstif/php-jira-rest-client/src/JsonMapperHelper.php on line 25
Deprecated: Creation of dynamic property JiraRestApi\Issue\IssueType::$hierarchyLevel is deprecated in /var/www/html/vendor/lesstif/php-jira-rest-client/src/JsonMapperHelper.php on line 25
Deprecated: Creation of dynamic property JiraRestApi\Project\Project::$simplified is deprecated in /var/www/html/vendor/lesstif/php-jira-rest-client/src/JsonMapperHelper.php on line 25
Deprecated: Creation of dynamic property JiraRestApi\Project\Project::$style is deprecated in /var/www/html/vendor/lesstif/php-jira-rest-client/src/JsonMapperHelper.php on line 25
Deprecated: Creation of dynamic property JiraRestApi\Project\Project::$isPrivate is deprecated in /var/www/html/vendor/lesstif/php-jira-rest-client/src/JsonMapperHelper.php on line 25
Deprecated: Creation of dynamic property JiraRestApi\Project\Project::$properties is deprecated in /var/www/html/vendor/lesstif/php-jira-rest-client/src/JsonMapperHelper.php on line 25
It'd be great to move away from the dynamic property creation, and properly support PHP 8.2.
When using this library under PHP 8.2 there are a lot of deprecation warnings being thrown for creation of dynamic properties. Some examples;
It'd be great to move away from the dynamic property creation, and properly support PHP 8.2.