Skip to content

Commit 87c5c2c

Browse files
committed
minor #25384 [HttpKernel] remove noisy frame in controller stack traces (nicolas-grekas)
This PR was merged into the 2.7 branch. Discussion ---------- [HttpKernel] remove noisy frame in controller stack traces | Q | A | ------------- | --- | Branch? | 2.7 | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | - | License | MIT | Doc PR | - Commits ------- 520cc97 [HttpKernel] remove noisy frame in controller stack traces
2 parents ed60a8b + 520cc97 commit 87c5c2c

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)