8000 [HttpKernel] fix merge (bis) · symfony/symfony@b33bf07 · GitHub
[go: up one dir, main page]

Skip to content

Commit b33bf07

Browse files
[HttpKernel] fix merge (bis)
1 parent ac16aed commit b33bf07

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/HttpKernel/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)
0