Skip to content

Commit

Permalink
Merge branch '6.4' into 7.0
Browse files Browse the repository at this point in the history
* 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.
  • Loading branch information
derrabus committed Mar 8, 2024
2 parents b58bcb2 + 8f34eae commit c40ab38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Console/Descriptor/TextDescriptor.php
Original file line number Diff line number Diff line change
Expand Up @@ -597,7 +597,7 @@ private function formatControllerLink(mixed $controller, string $anchorText, ?ca
} elseif (!\is_string($controller)) {
return $anchorText;
} elseif (str_contains($controller, '::')) {
$r = new \ReflectionMethod($controller);
$r = new \ReflectionMethod(...explode('::', $controller, 2));
} else {
$r = new \ReflectionFunction($controller);
}
Expand Down

0 comments on commit c40ab38

Please sign in to comment.