mirror of
https://github.com/sp-tarkov/forge.git
synced 2025-02-13 04:30:41 -05:00
22 lines
372 B
PHP
22 lines
372 B
PHP
<?php
|
|
|
|
namespace Database\Factories;
|
|
|
|
use App\Models\OAuthConnection;
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
class OAuthConnectionFactory extends Factory
|
|
{
|
|
protected $model = OAuthConnection::class;
|
|
|
|
/**
|
|
* Define the model's default state.
|
|
*/
|
|
public function definition(): array
|
|
{
|
|
return [
|
|
//
|
|
];
|
|
}
|
|
}
|