*/ class MailboxFactory extends Factory { public function definition(): array { return [ 'key' => $this->faker->unique()->word(), 'address' => $this->faker->unique()->safeEmail(), 'display_name' => 'CluPilot', 'username' => null, 'password' => 'test-passwort', 'no_reply' => false, 'active' => true, ]; } }