예제 #1
0
파일: JwtTest.php 프로젝트: maarky/jwt
 public function testSetAlgo_testAlgo()
 {
     $jwt = new Jwt($this->srcJwt, $this->secret);
     $this->assertEquals('HS512', $jwt->setAlgo('HS512')->getHeader('alg')->get());
 }