- Issue created by @maijs
- Status changed to Needs review
4 months ago 2:37pm 30 July 2024
When using the module with PHP 8.2, the following warning is displayed on the template management page:
Deprecated: Use of "static" in callables is deprecated in /web/modules/contrib/wysiwyg_template/src/Entity/Template.php on line 178
Current code:
uasort($entities, 'static::sort');
Proposed code:
uasort($entities, static::class . '::sort');
Needs review
3.0
Code