Skip to content

Commit 3684628

Browse files
[HttpKernel] fix merge (bis)
1 parent f9a983b commit 3684628

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/DataCollector/RequestDataCollectorTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ function () { return 'foo'; },
127127

128128
[
129129
'First-class callable closure',
130-
$controller->regularCallable(...),
130+
\PHP_VERSION_ID >= 80100 ? eval('return $controller->regularCallable(...);') : [$controller, 'regularCallable'],
131131
[
132132
'class' => DummyController::class,
133133
'method' => 'regularCallable',

0 commit comments

Comments
 (0)