29 lines
707 B
PHP
29 lines
707 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace Database\Factories\Engelsystem\Models;
|
||
|
|
||
|
use Engelsystem\Models\OAuth;
|
||
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
||
|
|
||
|
class OAuthFactory extends Factory
|
||
|
{
|
||
|
/** @var class-string */
|
||
|
protected $model = OAuth::class; // phpcs:ignore
|
||
|
|
||
|
/**
|
||
|
* @return array<string, mixed>
|
||
|
*/
|
||
|
public function definition(): array
|
||
|
{
|
||
|
return [
|
||
|
'provider' => $this->faker->unique()->word(),
|
||
|
'identifier' => $this->faker->unique()->word(),
|
||
|
'access_token' => $this->faker->unique()->word(),
|
||
|
'refresh_token' => $this->faker->unique()->word(),
|
||
|
'expires_at' => '2099-12-31',
|
||
|
];
|
||
|
}
|
||
|
}
|