Skip to content

Commit 520cc97

Browse files
[HttpKernel] remove noisy frame in controller stack traces
1 parent 7ba6000 commit 520cc97

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/HttpKernel/HttpKernel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ private function handleRaw(Request $request, $type = self::MASTER_REQUEST)
134134
$arguments = $this->resolver->getArguments($request, $controller);
135135

136136
// call controller
137-
$response = call_user_func_array($controller, $arguments);
137+
$response = \call_user_func_array($controller, $arguments);
138138

139139
// view
140140
if (!$response instanceof Response) {

0 commit comments

Comments
 (0)