Skip to content

Commit a3dc55f

Browse files
committed
remove unneded cast
1 parent 29e614d commit a3dc55f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Handler/Logging.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ private function getRequestData(?RequestInterface $request): array
9494
$queryData = $query->toArray();
9595
$requestMethod = $request->getMethod();
9696
$bodyData = $post->toArray();
97-
$rawData = str_replace(PHP_EOL, '', (string) $request->getContent());
97+
$rawData = str_replace(PHP_EOL, '', $request->getContent());
9898
$filesData = $this->includeFilesToAttachments
9999
? $files->toArray()
100100
: [];

0 commit comments

Comments
 (0)