*/ class LocationsImportFileBuilder extends FileBuilder { /** * @inheritdoc */ protected function getDictionary(): array { return [ 'name' => 'name', 'phone' => 'Phone', 'address' => 'address', 'address2' => 'address2', 'city' => 'city', 'state' => 'state', 'country' => 'country', 'zip' => 'zip', 'notes' => 'notes', ]; } /** * @inheritdoc */ public function definition(): array { $faker = fake(); return [ 'name' => $faker->company, 'phone' => $faker->phoneNumber, ]; } }