19 lines
425 B
PHP
19 lines
425 B
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of foskym/flarum-oauth-center.
|
|
*
|
|
* Copyright (c) 2023 FoskyM.
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE.md
|
|
* file that was distributed with this source code.
|
|
*/
|
|
namespace FoskyM\OAuthCenter\Models;
|
|
|
|
use Flarum\Database\AbstractModel;
|
|
|
|
class AccessToken extends AbstractModel
|
|
{
|
|
protected $table = 'oauth_access_tokens';
|
|
protected $guarded = [];
|
|
}
|