Skip to content
This repository was archived by the owner on Apr 7, 2021. It is now read-only.

Commit 794ce5c

Browse files
austinheapStyleCIBot
authored andcommitted
Apply fixes from StyleCI
1 parent c6ae93a commit 794ce5c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Logs/Formatter.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* @author Austin Heap <me@austinheap.com>
66
* @version v0.1.6
77
*/
8-
declare(strict_types = 1);
8+
declare(strict_types=1);
99

1010
namespace AustinHeap\Database\InfluxDb\Logs;
1111

@@ -81,7 +81,7 @@ protected function prepareTags(array $record): array
8181
*/
8282
protected function prepareMessage(array $record): array
8383
{
84-
$tags = $this->prepareTags($record);
84+
$tags = $this->prepareTags($record);
8585
$message = [
8686
'name' => 'Error',
8787
'value' => 1,
@@ -91,7 +91,7 @@ protected function prepareMessage(array $record): array
9191
if (count($tags)) {
9292
foreach ($tags as $key => $value) {
9393
if (is_numeric($value)) {
94-
$message['fields'][$key] = (int)$value;
94+
$message['fields'][$key] = (int) $value;
9595
}
9696
}
9797

0 commit comments

Comments
 (0)