示例#1
0
文件: JwtTest.php 项目: maarky/jwt
 public function testIsValid_false_badSecret()
 {
     $jwt = new Jwt($this->srcJwt, $this->secret . 'x');
     $this->assertFalse($jwt->isValid());
 }