Remove UserFactory doc comments

This commit is contained in:
NoAvatar 2024-10-16 02:46:24 +10:00
parent cfc38b6d4a
commit f87465cb42

View File

@ -11,16 +11,8 @@
*/ */
class UserFactory extends Factory class UserFactory extends Factory
{ {
/**
* The current password being used by the factory.
*/
protected static ?string $password; protected static ?string $password;
/**
* Define the model's default state.
*
* @return array<string, mixed>
*/
public function definition(): array public function definition(): array
{ {
return [ return [
@ -32,12 +24,9 @@ public function definition(): array
]; ];
} }
/**
* Indicate that the model's email address should be unverified.
*/
public function unverified(): static public function unverified(): static
{ {
return $this->state(fn (array $attributes) => [ return $this->state(fn(array $attributes) => [
'email_verified_at' => null, 'email_verified_at' => null,
]); ]);
} }