mirror of
https://gitee.com/ctexthuang/hyperf-micro-svc.git
synced 2026-02-08 10:20:16 +08:00
27 lines
464 B
PHP
27 lines
464 B
PHP
<?php
|
|
/**
|
|
* This service file is part of item.
|
|
*
|
|
* @author ctexthuang
|
|
* @contact ctexthuang@qq.com
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Service\Admin\Login;
|
|
|
|
use App\Service\Admin\BaseAdminService;
|
|
use Lcobucci\JWT\UnencryptedToken;
|
|
|
|
class RefreshService extends BaseAdminService
|
|
{
|
|
public function handle(): array
|
|
{
|
|
return $this->adminReturn->success();
|
|
}
|
|
|
|
public function refreshToken(UnencryptedToken $token)
|
|
{
|
|
|
|
}
|
|
} |