Skip to content

Commit 0eb9fb0

Browse files
committed
fix:$token 参数隐式可空的参数修改为显式可空类型,以避免出现弃用警告或错误。
1 parent a80aaa2 commit 0eb9fb0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/JwtToken.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ public static function generateToken(array $extend): array
174174
* @throws JwtTokenException
175175
* @author Tinywan(ShaoBo Wan)
176176
*/
177-
public static function verify(int $tokenType = self::ACCESS_TOKEN, string $token = null): array
177+
public static function verify(int $tokenType = self::ACCESS_TOKEN, ?string $token = null): array
178178
{
179179
$token = $token ?? self::getTokenFromHeaders();
180180
try {

0 commit comments

Comments
 (0)