Exemplo n.º 1
0
 public function testIsValid_false_badSecret()
 {
     $jwt = new Jwt($this->srcJwt, $this->secret . 'x');
     $this->assertFalse($jwt->isValid());
 }