vito/database/factories/SourceControlFactory.php
Saeed Vaziry 224e0ac2b0 tests
2024-10-13 12:33:12 +02:00

49 lines
1.1 KiB
PHP

<?php
namespace Database\Factories;
use App\Models\SourceControl;
use Illuminate\Database\Eloquent\Factories\Factory;
use Illuminate\Support\Str;
class SourceControlFactory extends Factory
{
protected $model = SourceControl::class;
public function definition(): array
{
return [
'access_token' => Str::random(10),
'profile' => $this->faker->name,
'project_id' => null,
];
}
public function gitlab(): Factory
{
return $this->state(function (array $attributes) {
return [
'provider' => \App\Enums\SourceControl::GITLAB,
];
});
}
public function github(): Factory
{
return $this->state(function (array $attributes) {
return [
'provider' => \App\Enums\SourceControl::GITHUB,
];
});
}
public function bitbucket(): Factory
{
return $this->state(function (array $attributes) {
return [
'provider' => \App\Enums\SourceControl::BITBUCKET,
];
});
}
}