Skip to content

Commit

Permalink
Drop ${test} support with PHP >= 8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
kylekatarnls committed Sep 16, 2023
1 parent 018397b commit 3bdec40
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/features/issues.php
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,10 @@ public function testIssue90()
data-b="$test"
data-c=\'#{$test}\'
data-d="#{$test}"
data-e="#${test}"
data-e="#' . (PHP_VERSION >= 8.2
? '{$test}' // Dropping ${test} support with PHP >= 8.2
: '${test}'
) . '"
) test', array(
'test' => 'foo',
))));
Expand Down

0 comments on commit 3bdec40

Please sign in to comment.