Skip to content

Commit

Permalink
fix: fix deprecation
Browse files Browse the repository at this point in the history
  • Loading branch information
bingo-soft committed Aug 11, 2023
1 parent 73beb05 commit a428b9f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Engine/Juel/JuelScriptEngineFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -103,9 +103,9 @@ public function getProgram(...$statements): string
$buf = "";
if (count($statements) !== 0) {
for ($i = 0; $i < count($statements); $i += 1) {
$buf .= "${";
$buf .= '${';
$buf .= $statements[$i];
$buf .= "} ";
$buf .= '} ';
}
}
return $buf;
Expand Down

0 comments on commit a428b9f

Please sign in to comment.