pedroborges / kirby-meta-tags

⬢ HTML meta tags generator for Kirby. Supports Open Graph and Twitter Cards out of the box.
MIT License
97 stars 11 forks source link

PHP 8.2 Creation of dynamic property is deprecated #30

Open Thomasorus opened 1 year ago

Thomasorus commented 1 year ago

Hi!

I was testing the waters for Kirby 3.9 RC1 and PHP8.2 and encountered a deprecation notice that I thought might be important to report:

Whoops\Exception\ErrorException thrown with message "Creation of dynamic property PedroBorges\KirbyMetaTags\MetaTags::$data is deprecated"

Stacktrace:
Whoops\Exception\ErrorException in /site/plugins/meta-tags/src/MetaTags.php:45

More information about this deprecation: https://stitcher.io/blog/deprecated-dynamic-properties-in-php-82

That's all, have a nice day.

isaactopo commented 1 year ago

If you put #[\AllowDynamicProperties] on /site/plugins/meta-tags/src/MetaTags.php before opening the class MetaTags solves this.