Why is this an issue?

There is no reason to concatenate literal strings. Doing so is an exercise in reducing code readability. Instead, the strings should be combined.

Noncompliant code example

$msg = "Hello " . "${name}" . "!";  // Noncompliant

Compliant solution

$msg = "Hello ${name}!";