Skip to content

Commit 1902b0d

Browse files
committed
cs
1 parent 563917a commit 1902b0d

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/Command/BaseLoggingCommandInitializer.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,11 @@ public function __invoke(ContainerInterface $container, mixed $instance): void
1717
}
1818

1919
/** @var array $config */
20-
$config = $container->get('config');
21-
20+
$config = $container->get('config');
2221
$errorHeroModuleConfig = $config['error-hero-module'];
2322

2423
/** @var Logging $logging */
2524
$logging = $container->get(Logging::class);
26-
2725
$instance->init($errorHeroModuleConfig, $logging);
2826
}
2927
}

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
$requestMethod = $request->getMethod();
9595
$bodyData = $post->toArray();
9696
$rawData = str_replace(PHP_EOL, '', (string) $request->getContent());
97-
$filesData = $this->includeFilesToAttachments
97+
$filesData = $this->includeFilesToAttachments
9898
? $files->toArray()
9999
: [];
100100

0 commit comments

Comments
 (0)