Skip to content

Commit 8f34eae

Browse files
Merge branch '5.4' into 6.4
* 5.4: [Serializer] Fix fixture [FrameworkBundle] Fix PHP 8.4 deprecation Add an experimental CI job for PHP 8.4
2 parents c76d388 + 5f0fda5 commit 8f34eae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Console/Descriptor/TextDescriptor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -597,7 +597,7 @@ private function formatControllerLink(mixed $controller, string $anchorText, ?ca
597597
} elseif (!\is_string($controller)) {
598598
return $anchorText;
599599
} elseif (str_contains($controller, '::')) {
600-
$r = new \ReflectionMethod($controller);
600+
$r = new \ReflectionMethod(...explode('::', $controller, 2));
601601
} else {
602602
$r = new \ReflectionFunction($controller);
603603
}

0 commit comments

Comments
 (0)