Skip to content

Commit c40ab38

Browse files
committed
Merge branch '6.4' into 7.0
* 6.4: [Serializer] Fix fixture [FrameworkBundle] Fix PHP 8.4 deprecation Add an experimental CI job for PHP 8.4 [HttpClient] Fix PHP 8.3 deprecation in tests [Messenger] [Amqp] Handle AMQPConnectionException when publishing a message.
2 parents b58bcb2 + 8f34eae commit c40ab38

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Console/Descriptor/TextDescriptor.php

+1-1
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)