示例#1
0
文件: JwtTest.php 项目: maarky/jwt
 public function testConstruct_notTrusted()
 {
     $jwt = new Jwt($this->claims, function () {
     }, $this->header);
     $this->assertFalse($jwt->isTrusted());
 }