We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b59e5e8 commit efacb31Copy full SHA for efacb31
src/Handler/Logging.php
@@ -94,7 +94,9 @@ private function getRequestData(?RequestInterface $request): array
94
$requestMethod = $request->getMethod();
95
$bodyData = $post->toArray();
96
$rawData = str_replace(PHP_EOL, '', (string) $request->getContent());
97
- $filesData = $this->includeFilesToAttachments
+
98
+ // CI tweak on Github
99
+ $filesData = isset($this->includeFilesToAttachments) && $this->includeFilesToAttachments
100
? $files->toArray()
101
: [];
102
0 commit comments