We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b716ce commit a144826Copy full SHA for a144826
src/Bridge/ContextInjector.php
@@ -78,8 +78,8 @@ public function getOperationName(Request $request)
78
{
79
if (null !== ($fragment = $request->attributes->get('is_fragment'))) {
80
return ($controller = $request->attributes->get('_controller', null))
81
- ? 'fragment'
82
- : sprintf('fragment.%s', $controller);
+ ? sprintf('fragment.%s', $controller)
+ : 'fragment';
83
}
84
85
if (null === ($routeName = $request->attributes->get('_route', null))) {
0 commit comments