mirror of
https://gitee.com/ctexthuang/hyperf-micro-svc.git
synced 2026-02-08 10:20:16 +08:00
10 lines
163 B
PHP
10 lines
163 B
PHP
<?php
|
|
|
|
namespace App\Interface;
|
|
|
|
use Lcobucci\JWT\UnencryptedToken;
|
|
|
|
interface CheckTokenInterface
|
|
{
|
|
public function checkJwt(UnencryptedToken $token): void;
|
|
} |