Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 8f34eae

Browse filesBrowse 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
Copy full SHA for 8f34eae

File tree

Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed

‎Console/Descriptor/TextDescriptor.php

Copy file name to clipboardExpand all lines: Console/Descriptor/TextDescriptor.php
+1-1Lines 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.