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); } /**