Skip to content

Commit dbc599a

Browse files
committed
Update code-style 💻
1 parent 38c1555 commit dbc599a

File tree

3 files changed

+14
-13
lines changed

3 files changed

+14
-13
lines changed

‎src/Casts/Hide.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ protected function process(array $values): array
2929
foreach ($values as $k => &$val) {
3030
if (is_array($val)) {
3131
$val = $this->process($val);
32+
3233
continue;
3334
}
3435

‎src/Services/Logger.php

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -27,16 +27,16 @@ public static function save(Request $request): void
2727
}
2828

2929
protected static function store(
30-
?string $name,
31-
string $method,
32-
string $scheme,
33-
string $host,
34-
int|string|null $port,
35-
string $path,
30+
?string $name,
31+
string $method,
32+
string $scheme,
33+
string $host,
34+
int|string|null $port,
35+
string $path,
3636
array|string|null $query,
37-
array $payload,
38-
array $headers,
39-
?string $ip
37+
array $payload,
38+
array $headers,
39+
?string $ip
4040
): void {
4141
HttpLog::create(compact(
4242
'name',

‎tests/HideTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ public function testLogging(): void
1515
$path = 'api/pages';
1616

1717
$uri = $path . '?' . http_build_query([
18-
'foo' => 'Foo',
19-
'token' => 123,
20-
'access_token' => 456,
21-
]);
18+
'foo' => 'Foo',
19+
'token' => 123,
20+
'access_token' => 456,
21+
]);
2222

2323
$this->assertDatabaseLogsCount(0);
2424

0 commit comments

Comments
 (0)