Skip to content

Commit 77b6953

Browse files
committed
Apply fixes from StyleCI
1 parent a98b935 commit 77b6953

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Integration/Http/HttpClientTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,11 +92,11 @@ public function testForwardsCallsToPromise()
9292
public function testCanSetRequestAttributes()
9393
{
9494
Http::fake([
95-
'*' => fn (Request $request) => match($request->attributes()['name'] ?? null) {
95+
'*' => fn (Request $request) => match ($request->attributes()['name'] ?? null) {
9696
'first' => Http::response('first response'),
9797
'second' => Http::response('second response'),
9898
default => Http::response('unnamed')
99-
}
99+
},
100100
]);
101101

102102
$response1 = Http::withAttributes(['name' => 'first'])->get('https://some-store.myshopify.com/admin/api/2025-10/graphql.json');

0 commit comments

Comments
 (0)