I personally can never remember which way we like, and on several occasions I've committed the wrong one.
I think xhpast can catch this.
```lang=php, counterexample, name=bad
$str = "hello ${world}";
```
```lang=php, name=good
$str = "hello {$world}";
```