diff --git a/upload/system/library/PagSeguro/src/Domains/Logger/PsrFormatter.php b/upload/system/library/PagSeguro/src/Domains/Logger/PsrFormatter.php index 6ee0564..f8acfe1 100644 --- a/upload/system/library/PagSeguro/src/Domains/Logger/PsrFormatter.php +++ b/upload/system/library/PagSeguro/src/Domains/Logger/PsrFormatter.php @@ -13,10 +13,13 @@ protected function addRow(string $th, string $td = ' ', bool $escapeTd = true): { $th = htmlspecialchars($th, ENT_NOQUOTES, 'UTF-8'); if ($escapeTd) { - $td = '
'.htmlspecialchars($td, ENT_NOQUOTES, 'UTF-8').'
'; + $td = '
' . htmlspecialchars($td, ENT_NOQUOTES, 'UTF-8') . '
'; } - return "\n$th:\n".$td."\n"; + return "\n" . + "$th:\n" . + "" . + $td . "\n"; } /** @@ -48,6 +51,6 @@ public function format(array $record): string $output .= $this->addRow('Extra', $embeddedTable, false); } - return $output.''; + return $output . ''; } }