From f87465cb421883f3c05edcc2648d7977ab55c9c5 Mon Sep 17 00:00:00 2001 From: NoAvatar Date: Wed, 16 Oct 2024 02:46:24 +1000 Subject: [PATCH] Remove UserFactory doc comments --- database/factories/UserFactory.php | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/database/factories/UserFactory.php b/database/factories/UserFactory.php index 584104c..a18e161 100644 --- a/database/factories/UserFactory.php +++ b/database/factories/UserFactory.php @@ -11,16 +11,8 @@ */ class UserFactory extends Factory { - /** - * The current password being used by the factory. - */ protected static ?string $password; - /** - * Define the model's default state. - * - * @return array - */ public function definition(): array { return [ @@ -32,12 +24,9 @@ public function definition(): array ]; } - /** - * Indicate that the model's email address should be unverified. - */ public function unverified(): static { - return $this->state(fn (array $attributes) => [ + return $this->state(fn(array $attributes) => [ 'email_verified_at' => null, ]); }