forum-oauth-center/src/Models/AccessToken.php
2023-10-01 17:16:45 +08:00

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 = [];
}