From 326d805cdb800166f60faab82e8cc3959c0274a7 Mon Sep 17 00:00:00 2001 From: lorenzolosa <11164571+lorenzolosa@users.noreply.github.com> Date: Wed, 21 Aug 2024 18:02:16 +0200 Subject: [PATCH] more specific parameter type in CastsInboundAttributes (#52536) --- .../Contracts/Database/Eloquent/CastsInboundAttributes.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Illuminate/Contracts/Database/Eloquent/CastsInboundAttributes.php b/src/Illuminate/Contracts/Database/Eloquent/CastsInboundAttributes.php index 6a3e2ef18f59..312f7aed4511 100644 --- a/src/Illuminate/Contracts/Database/Eloquent/CastsInboundAttributes.php +++ b/src/Illuminate/Contracts/Database/Eloquent/CastsInboundAttributes.php @@ -12,7 +12,7 @@ interface CastsInboundAttributes * @param \Illuminate\Database\Eloquent\Model $model * @param string $key * @param mixed $value - * @param array $attributes + * @param array $attributes * @return mixed */ public function set(Model $model, string $key, mixed $value, array $attributes);