This commit is contained in:
2021-08-06 17:46:35 +08:00
parent 587433f112
commit c2ebe4c670
+2 -3
View File
@@ -3,7 +3,6 @@ declare(strict_types=1);
namespace Snowflake\Jwt; namespace Snowflake\Jwt;
use Annotation\Inject;
use Exception; use Exception;
use Server\Constrict\Request; use Server\Constrict\Request;
use Snowflake\Abstracts\Component; use Snowflake\Abstracts\Component;
@@ -97,10 +96,10 @@ class Jwt extends Component
/** /**
* @param $token * @param $token
* @return string * @return string|int
* @throws JWTAuthTokenException * @throws JWTAuthTokenException
*/ */
public function getUnionId($token): string public function getUnionId($token): string|int
{ {
return $this->unpack($token)['unionId']; return $this->unpack($token)['unionId'];
} }