示例#1
0
文件: JWT.php 项目: devstackgroup/jwt
 public function __construct($algorithm = 'HS256')
 {
     $this->headers = ['typ' => 'JWT', 'alg' => $algorithm];
     JWT::$algorithm = $algorithm;
 }