There is no reason to concatenate literal strings. Doing so is an exercise in reducing code readability. Instead, the strings should be combined.
$msg = "Hello " . "${name}" . "!"; // Noncompliant
$msg = "Hello ${name}!";