- Issue created by @duaelfr
- Merge request !11Issue #3490228: fix creation of dynamic property deprecation notice → (Open) created by duaelfr
- 🇫🇷France duaelfr Montpellier, France
Duplicate of 📌 PHP 8.2 compatibility Needs work
Since PHP 8.2, setting dynamic properties on classes is deprecated and throws some notices:
Deprecated function: Creation of dynamic property Drupal\\select_translation\\Plugin\\views\\filter\\SelectTranslation::$valueTitle is deprecated in Drupal\\select_translation\\Plugin\\views\\filter\\SelectTranslation->init() (line 62 of modules/contrib/select_translation/src/Plugin/views/filter/SelectTranslation.php).
I believe this module uses $this->valueTitle
as an old artifact from extending \Drupal\views\Plugin\views\filter\InOperator
in early development stages. Now this \Drupal\select_translation\Plugin\views\filter\SelectTranslation->valueTitle
property is dynamically set and never used.
Remove this call.
Active
2.0
Code
Duplicate of 📌 PHP 8.2 compatibility Needs work