コード例 #1
0
ファイル: PublicClaim.php プロジェクト: emarref/jwt
 /**
  * @param string $name
  * @param mixed $value
  */
 public function __construct($name = null, $value = null)
 {
     parent::__construct($value);
     $this->setName($name);
 }
コード例 #2
0
ファイル: DateValueClaim.php プロジェクト: emarref/jwt
 /**
  * @return int
  */
 public function getValue()
 {
     return parent::getValue();
 }