Quantcast
Channel: Support & Bugs - Matomo forums
Viewing all articles
Browse latest Browse all 5715

PHP 8.2 ver 4.13.3 - Symphony errors

$
0
0

The CRON task comes back with the following error’s:

PHP Deprecated: Using ${var} in strings is deprecated, use {$var} instead in /var/www/html/vendor/symfony/console/Symfony/Component/Console/Helper/DialogHelper.php on line 52
PHP Deprecated: Using ${var} in strings is deprecated, use {$var} instead in /var/www/html/vendor/symfony/console/Symfony/Component/Console/Helper/QuestionHelper.php on line 120

In both instances the line is:

$messages[] = sprintf(" [%-${width}s] %s", $key, $value);
→ needs to change to:
$messages[] = sprintf(" [%-{$width}s] %s", $key, $value);

to be compliant.

1 post - 1 participant

Read full topic


Viewing all articles
Browse latest Browse all 5715

Trending Articles