Kulturmensch
Regular Pleskian
Since I upgraded from php 8.1 to php 8.2 I got some deprecation warnings like "Deprecated function: Using ${var} in strings is deprecated, use {$var} instead" In some cases I could solve it by replacing used variables i.e. ${var} by ${var}.
But I have no idea how to solve this following warning by Drupal 10:
Deprecated function: Using ${var} in strings is deprecated, use {$var} instead in include() (line 571 of /var/www/vhosts/tenckhoff.de/httpdocs/vendor/composer/ClassLoader.php)
On line 571 I found the following code:
569 function includeFile($file)
570 {
571 include $file;
572 }
Is there any proposal what I can try to get rid of this deprecation warning?
But I have no idea how to solve this following warning by Drupal 10:
Deprecated function: Using ${var} in strings is deprecated, use {$var} instead in include() (line 571 of /var/www/vhosts/tenckhoff.de/httpdocs/vendor/composer/ClassLoader.php)
On line 571 I found the following code:
569 function includeFile($file)
570 {
571 include $file;
572 }
Is there any proposal what I can try to get rid of this deprecation warning?