mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-23 11:58:41 +08:00
18 lines
227 B
PHP
18 lines
227 B
PHP
<?php
|
|
|
|
namespace App\Http\Api\Services;
|
|
|
|
use App\Services\Auth\Api as ApiAuth;
|
|
|
|
class Logout extends Service
|
|
{
|
|
|
|
public function logout()
|
|
{
|
|
$auth = new ApiAuth();
|
|
|
|
return $auth->clearAuthInfo();
|
|
}
|
|
|
|
}
|