Skip to content

Commit ea8e79b

Browse files
Merge branch '4.4' into 5.3
* 4.4: [Process] intersect with getenv() in case-insensitive manner to get default envs [Serializer] fix support for lazy/unset properties Fix redundant type casts Revert "[DoctrineBridge] add support for the JSON type"
2 parents 4a3fe85 + 4f0521c commit ea8e79b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

DataCollector/RequestDataCollector.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ public function collect(Request $request, Response $response, \Throwable $except
159159
'method' => $request->getMethod(),
160160
'controller' => $this->parseController($request->attributes->get('_controller')),
161161
'status_code' => $statusCode,
162-
'status_text' => Response::$statusTexts[(int) $statusCode],
162+
'status_text' => Response::$statusTexts[$statusCode],
163163
]),
164164
0, '/', null, $request->isSecure(), true, false, 'lax'
165165
));

0 commit comments

Comments
 (0)