Ejemplo n.º 1
0
 public function testConstructionFromHeader()
 {
     $header = array('alg' => 'RS256', 'test' => true);
     $jws = new JWS($header);
     $this->assertTrue($header == $jws->getHeader());
 }