We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a286685 + a322637 commit 191d79bCopy full SHA for 191d79b
examples/menu.php
@@ -19,6 +19,6 @@
19
break;
20
}
21
22
- include "${choice}.php";
+ include "{$choice}.php";
23
\cli\line();
24
lib/cli/arguments/HelpScreen.php
@@ -91,7 +91,7 @@ private function _renderScreen($options, $max) {
91
92
$pad = str_repeat(' ', $max + 3);
93
while ($desc = array_shift($description)) {
94
- $formatted .= "\n${pad}${desc}";
+ $formatted .= "\n{$pad}{$desc}";
95
96
97
array_push($help, $formatted);
0 commit comments