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

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();
}
}