()
| 957 | class StringInterpolationDemo |
| 958 | { |
| 959 | public function demo(): void |
| 960 | { |
| 961 | $pen = new Pen('blue'); |
| 962 | echo "Ink is {$pen->color()}"; // brace interpolation — full completion |
| 963 | echo "Tool: $pen->ink"; // simple interpolation |
| 964 | echo 'no $pen-> here'; // single-quoted — suppressed |
| 965 | } |
| 966 | } |
| 967 | |
| 968 |