Files
vito/database/factories/DeploymentFactory.php
Saeed Vaziry 131b828807 Plugins base (#613)
* wip

* wip

* cleanup

* notification channels

* phpstan

* services

* remove server types

* refactoring

* refactoring
2025-06-14 14:35:18 +02:00

22 lines
340 B
PHP
Executable File

<?php
namespace Database\Factories;
use App\Models\Deployment;
use Illuminate\Database\Eloquent\Factories\Factory;
/**
* @extends Factory<Deployment>
*/
class DeploymentFactory extends Factory
{
protected $model = Deployment::class;
public function definition(): array
{
return [
//
];
}
}