From c582217b36c89c791ed1b130a94eecadeb4f6b71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20Sz=C3=A9pe?= Date: Tue, 26 Apr 2022 17:46:16 +0000 Subject: [PATCH] Fix typo in Factory::state (#42144) --- Eloquent/Factories/Factory.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Eloquent/Factories/Factory.php b/Eloquent/Factories/Factory.php index 3e88cd05e..79b1347f5 100644 --- a/Eloquent/Factories/Factory.php +++ b/Eloquent/Factories/Factory.php @@ -467,7 +467,7 @@ protected function expandAttributes(array $definition) /** * Add a new state transformation to the model definition. * - * @param (callable(array, \Illuminate\Database\Eloquent\Model|null=): array)|array $state + * @param (callable(array, \Illuminate\Database\Eloquent\Model|null): array)|array $state * @return static */ public function state($state)