Skip to content

Commit

Permalink
style: fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
JaZo committed Sep 4, 2023
1 parent 966252a commit 28faf97
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Providers/ServiceProviderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ public function itRegistersHttpFacadeMacroForRequest(): void

// assert
Http::assertSent(static function (Request $request) {
return $request->hasHeader('Content-Type', 'application/vnd.api+json') &&
$request->hasHeader('Accept', 'application/vnd.api+json');
return $request->hasHeader('Content-Type', 'application/vnd.api+json')
&& $request->hasHeader('Accept', 'application/vnd.api+json');
});
}

Expand Down

0 comments on commit 28faf97

Please sign in to comment.