Skip to content

Commit

Permalink
PHP-CS-Fixer
Browse files Browse the repository at this point in the history
  • Loading branch information
DamienHarper committed Feb 22, 2023
1 parent 7729f4c commit fd73134
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ private function audit(array $data): void
$schema = $data['schema'] ? $data['schema'].'.' : '';
$auditTable = $schema.$configuration->getTablePrefix().$data['table'].$configuration->getTableSuffix();
$dt = new DateTimeImmutable('now', new DateTimeZone($this->provider->getAuditor()->getConfiguration()->getTimezone()));
$diff = is_string($data["diff"]) ? mb_convert_encoding($data['diff'], 'UTF-8', 'UTF-8') : $data["diff"];
$diff = \is_string($data['diff']) ? mb_convert_encoding($data['diff'], 'UTF-8', 'UTF-8') : $data['diff'];

$payload = [
'entity' => $data['entity'],
Expand Down

0 comments on commit fd73134

Please sign in to comment.