Replace deprecated variable usage in string literals
kpnielsen opened this issue · 1 comments
kpnielsen commented
In some places, e.g. here in the BuildQueueCommand, variables are placed in string literals using the syntax "Something ${var} something"
. This is deprecated in PHP 8.2 and will be removed in PHP 9, see deprecation notice. In order to be compatible with newer PHP versions, variables in string literals should be placed using this syntax: "Something {$var} something"
($
symbol within the curly braces) (see the PHP documentation).
As far as I understand it, this should even be backwards-compatible.