1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-26 12:23:06 +08:00
xiaochong0302 c0e38d68fd 精简auth
2020-04-07 19:32:00 +08:00

17 lines
240 B
PHP

<?php
namespace App\Services;
use App\Models\User as UserModel;
abstract class Auth extends Service
{
abstract function saveAuthInfo(UserModel $user);
abstract function getAuthInfo();
abstract function clearAuthInfo();
}