Skip to content

Commit efacb31

Browse files
committed
Fix
1 parent b59e5e8 commit efacb31

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/Handler/Logging.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,9 @@ private function getRequestData(?RequestInterface $request): array
9494
$requestMethod = $request->getMethod();
9595
$bodyData = $post->toArray();
9696
$rawData = str_replace(PHP_EOL, '', (string) $request->getContent());
97-
$filesData = $this->includeFilesToAttachments
97+
98+
// CI tweak on Github
99+
$filesData = isset($this->includeFilesToAttachments) && $this->includeFilesToAttachments
98100
? $files->toArray()
99101
: [];
100102

0 commit comments

Comments
 (0)