From ddf47e999dcdabd2f370e5b9772a7449f4a81729 Mon Sep 17 00:00:00 2001 From: Jonathan Reinink Date: Wed, 12 Jun 2024 21:36:28 -0400 Subject: [PATCH] Formatting --- src/Response.php | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/Response.php b/src/Response.php index 50baf000..d2565294 100644 --- a/src/Response.php +++ b/src/Response.php @@ -80,7 +80,7 @@ public function rootView(string $rootView): self /** * Create an HTTP response that represents the object. * - * @param \Illuminate\Http\Request $request + * @param Request $request * * @return \Symfony\Component\HttpFoundation\Response */ @@ -139,10 +139,7 @@ public function resolveAlwaysProps(array $props): array return $prop instanceof AlwaysProp; }); - return array_merge( - $always, - $props - ); + return array_merge($always, $props); } /**