mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-22 03:32:47 +08:00
17 lines
240 B
PHP
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();
|
|
|
|
}
|