예제 #1
0
파일: JwtTest.php 프로젝트: maarky/jwt
 public function testIsValid_false_badSecret()
 {
     $jwt = new Jwt($this->srcJwt, $this->secret . 'x');
     $this->assertFalse($jwt->isValid());
 }