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 5f0fda5

Browse filesBrowse files
[FrameworkBundle] Fix PHP 8.4 deprecation
1 parent 224f690 commit 5f0fda5
Copy full SHA for 5f0fda5

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
@@ -559,7 +559,7 @@ private function formatControllerLink($controller, string $anchorText, ?callable
559559
} elseif (!\is_string($controller)) {
560560
return $anchorText;
561561
} elseif (str_contains($controller, '::')) {
562-
$r = new \ReflectionMethod($controller);
562+
$r = new \ReflectionMethod(...explode('::', $controller, 2));
563563
} else {
564564
$r = new \ReflectionFunction($controller);
565565
}

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.