We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac727b7 commit ea61547Copy full SHA for ea61547
test/LogErrorHandlerTest.php
@@ -178,6 +178,9 @@ public function testLogErrorHandlerLogsWillContainExtraKeysWhenProvidersAreEnabl
178
);
179
180
$this->serverRequest->method('getCookieParams')->willReturn([]);
181
+ $this->serverRequest->method('getHeader')->willReturn([]);
182
+ $this->serverRequest->method('getParsedBody')->willReturn([]);
183
+ $this->serverRequest->method('getServerParams')->willReturn([]);
184
185
$extra = $logErrorHandler->provideExtra(new \Exception('test'), $this->serverRequest);
186
0 commit comments