mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-22 00:52:43 +01:00
31 lines
655 B
PHP
31 lines
655 B
PHP
<?php
|
|
|
|
namespace Database\Factories;
|
|
|
|
use Ramsey\Uuid\Uuid;
|
|
use Pterodactyl\Models\Egg;
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
class EggFactory extends Factory
|
|
{
|
|
/**
|
|
* The name of the factory's corresponding model.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $model = Egg::class;
|
|
|
|
/**
|
|
* Define the model's default state.
|
|
*/
|
|
public function definition(): array
|
|
{
|
|
return [
|
|
'uuid' => Uuid::uuid4()->toString(),
|
|
'name' => $this->faker->name,
|
|
'description' => implode(' ', $this->faker->sentences()),
|
|
'startup' => 'java -jar test.jar',
|
|
];
|
|
}
|
|
}
|