Files
speedtest-tracker/database/factories/SpeedtestFactory.php
T
Alex Justesen eb5341a3f1 initial commit
2022-09-11 09:40:09 -04:00

24 lines
413 B
PHP

<?php
namespace Database\Factories;
use Illuminate\Database\Eloquent\Factories\Factory;
/**
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\Speedtest>
*/
class SpeedtestFactory extends Factory
{
/**
* Define the model's default state.
*
* @return array<string, mixed>
*/
public function definition()
{
return [
//
];
}
}