mirror of
https://github.com/pterodactyl/panel.git
synced 2026-06-02 11:00:44 -05:00
24 lines
474 B
PHP
24 lines
474 B
PHP
<?php
|
|
|
|
namespace Database\Factories;
|
|
|
|
use Illuminate\Support\Str;
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
/**
|
|
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\Pterodactyl\Models\Location>
|
|
*/
|
|
class LocationFactory extends Factory
|
|
{
|
|
/**
|
|
* Define the model's default state.
|
|
*/
|
|
public function definition(): array
|
|
{
|
|
return [
|
|
'short' => Str::random(8),
|
|
'long' => Str::random(32),
|
|
];
|
|
}
|
|
}
|