engelsystem/src/Models/OAuth.php

60 lines
1.6 KiB
PHP
Raw Normal View History

2020-11-15 18:47:30 +01:00
<?php
declare(strict_types=1);
namespace Engelsystem\Models;
use Carbon\Carbon;
use Engelsystem\Models\User\UsesUserModel;
2023-04-01 14:23:52 +02:00
use Illuminate\Database\Eloquent\Factories\HasFactory;
2020-11-15 18:47:30 +01:00
use Illuminate\Database\Query\Builder as QueryBuilder;
/**
* @property int $id
* @property string $provider
* @property string $identifier
2020-12-26 18:24:20 +01:00
* @property string $access_token
* @property string $refresh_token
* @property Carbon|null $expires_at
2020-11-15 18:47:30 +01:00
* @property Carbon|null $created_at
* @property Carbon|null $updated_at
*
* @method static QueryBuilder|OAuth[] whereId($value)
* @method static QueryBuilder|OAuth[] whereProvider($value)
* @method static QueryBuilder|OAuth[] whereIdentifier($value)
2020-12-26 18:24:20 +01:00
* @method static QueryBuilder|OAuth[] whereAccessToken($value)
* @method static QueryBuilder|OAuth[] whereRefreshToken($value)
2020-11-15 18:47:30 +01:00
*/
class OAuth extends BaseModel
{
2023-04-01 14:23:52 +02:00
use HasFactory;
2020-11-15 18:47:30 +01:00
use UsesUserModel;
public $table = 'oauth'; // phpcs:ignore
2020-11-15 18:47:30 +01:00
2023-08-29 17:43:45 +02:00
/** @var array<string, null> default attributes */
protected $attributes = [ // phpcs:ignore
'access_token' => null,
'refresh_token' => null,
'expires_at' => null,
];
2020-11-15 18:47:30 +01:00
/** @var bool Enable timestamps */
public $timestamps = true; // phpcs:ignore
2020-11-15 18:47:30 +01:00
/** @var array<string, string> */
protected $casts = [ // phpcs:ignore
'user_id' => 'integer',
2023-09-20 19:29:25 +02:00
'expires_at' => 'datetime',
2020-12-26 18:24:20 +01:00
];
/** @var array<string> */
protected $fillable = [ // phpcs:ignore
2020-11-15 18:47:30 +01:00
'provider',
'identifier',
2020-12-26 18:24:20 +01:00
'access_token',
'refresh_token',
'expires_at',
2020-11-15 18:47:30 +01:00
];
}