Files
panel/database/factories/SubuserFactory.php
2021-01-15 18:01:48 -07:00

27 lines
456 B
PHP

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