Skip to content

Commit b941828

Browse files
committed
Merge branch '7.0' into 7.1
* 7.0: [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 8162dad + c40ab38 commit b941828

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
@@ -595,7 +595,7 @@ private function formatControllerLink(mixed $controller, string $anchorText, ?ca
595595
} elseif (!\is_string($controller)) {
596596
return $anchorText;
597597
} elseif (str_contains($controller, '::')) {
598-
$r = new \ReflectionMethod($controller);
598+
$r = new \ReflectionMethod(...explode('::', $controller, 2));
599599
} else {
600600
$r = new \ReflectionFunction($controller);
601601
}

0 commit comments

Comments
 (0)