*/ public function definition(): array { return [ 'id' => str_replace(' ', '', str_replace('.', '', $this->faker->unique()->text(5))), 'name' => str_replace('.', '', $this->faker->unique()->word), 'type' => $this->faker->randomElement([NavaidType::VOR, NavaidType::NDB]), 'lat' => $this->faker->latitude, 'lon' => $this->faker->longitude, 'freq' => $this->faker->randomFloat(2, 100, 1000), ]; } }