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.
1 parent 219ee1c commit 3606930Copy full SHA for 3606930
tests/ReflectionClosure1Test.php
@@ -275,19 +275,10 @@
275
});
276
277
test('interpolation1', function () {
278
- if (PHP_VERSION_ID >= 80200) {
279
- $f1 = function () {
280
- return "{$foo}{$bar}{$foobar}";
281
- };
282
- $e1 = 'function () {
283
284
- }';
285
- } else {
286
287
- return "${foo}${bar}{$foobar}";
288
289
290
291
292
- }
+ $f1 = function () {
+ return "{$foo}{$bar}{$foobar}";
+ };
+ $e1 = 'function () {
+ }';
293
0 commit comments