Skip to content

Commit ed3ffac

Browse files
authored
Merge pull request #9 from kyour-cn/patch-1
fix: Undefined index: nbf
2 parents c328594 + 8adaf86 commit ed3ffac

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
@@ -286,7 +286,7 @@ private static function generatePayload(array $config, array $extend): array
286286
'iss' => $config['iss'], // 签发者
287287
'aud' => $config['iss'], // 接收该JWT的一方
288288
'iat' => time(), // 签发时间
289-
'nbf' => time() + $config['nbf'] ?? 0, // 某个时间点后才能访问
289+
'nbf' => time() + ($config['nbf'] ?? 0), // 某个时间点后才能访问
290290
'exp' => time() + $config['access_exp'], // 过期时间
291291
'extend' => $extend // 自定义扩展信息
292292
];

0 commit comments

Comments
 (0)