Deprecated: Twig\Node\Expression\Filter\DefaultFilter::__construct(): Implicitly marking parameter $tag as nullable is deprecated, the explicit nullable type must be used instead in C:\wamp64\apps\phpmyadmin5.2.1\vendor\twig\twig\src\Node\Expression\Filter\DefaultFilter.php on line 32
php 8.4.2
phpmyadmin 5.2.1
The deprecation warning in PHPMyAdmin 5.2.1 occurs because the DefaultFilter constructor in Twig is using an outdated way of handling nullable parameters. Modern PHP requires explicit nullable type declarations using the "?" prefix (like "?Node $tag") instead of implicit ones. This should be fixed by updating the constructor's parameter type declaration in DefaultFilter.php.
php 8.4.2
phpmyadmin 5.2.1
The deprecation warning in PHPMyAdmin 5.2.1 occurs because the DefaultFilter constructor in Twig is using an outdated way of handling nullable parameters. Modern PHP requires explicit nullable type declarations using the "?" prefix (like "?Node $tag") instead of implicit ones. This should be fixed by updating the constructor's parameter type declaration in DefaultFilter.php.