. Licensed under the GNU Affero General Public License v3.0. // See the LICENCE file in the repository root for full licence text. declare(strict_types=1); namespace Database\Factories; use App\Models\Season; use Illuminate\Database\Eloquent\Factories\Factory; class SeasonFactory extends Factory { protected $model = Season::class; /** * Define the model's default state. * * @return array */ public function definition(): array { return [ 'name' => $this->faker->sentence(), ]; } }