From 28faf97a925c3cd10ba556a809dbd927abf0e83d Mon Sep 17 00:00:00 2001 From: Jasper Zonneveld Date: Mon, 4 Sep 2023 16:05:55 +0200 Subject: [PATCH] style: fix code style --- tests/Providers/ServiceProviderTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Providers/ServiceProviderTest.php b/tests/Providers/ServiceProviderTest.php index 1b89698..273b262 100644 --- a/tests/Providers/ServiceProviderTest.php +++ b/tests/Providers/ServiceProviderTest.php @@ -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'); }); }