Inheritance: implements Countable, implements Iterator
Example #1
0
File: Jwt.php Project: psecio/jwt
 /**
  * Add a Claim to the current collection
  *
  * @param \Psecio\Jwt\Claim $claim Claim instance to add
  * @return \Psecio\Jwt\Jwt Current Jwt instance
  */
 public function addClaim(\Psecio\Jwt\Claim $claim)
 {
     $this->claims->add($claim);
     return $this;
 }