start porting over factories to new layout

This commit is contained in:
Matthew Penner
2021-01-15 17:45:52 -07:00
parent 90335e6286
commit c18e186589
5 changed files with 124 additions and 2 deletions

View File

@@ -0,0 +1,26 @@
<?php
namespace Database\Factories;
use Pterodactyl\Models\User;
use Illuminate\Database\Eloquent\Factories\Factory;
class UserFactory extends Factory
{
/**
* The name of the factory's corresponding model.
*
* @var string
*/
protected $model = User::class;
/**
* Define the model's default state.
*
* @return array
*/
public function definition(): array
{
return [];
}
}