fix : jwt

This commit is contained in:
2025-09-12 23:54:03 +08:00
parent ea6abe3043
commit 68ecac2fb9
8 changed files with 121 additions and 42 deletions

View File

@@ -0,0 +1,27 @@
<?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)
{
}
}