Exemplo n.º 1
0
Arquivo: Time.php Projeto: sop/x509
 /**
  * Initialize from ASN.1.
  *
  * @param TimeType $el
  * @return self
  */
 public static function fromASN1(TimeType $el)
 {
     $obj = new self($el->dateTime());
     $obj->_type = $el->tag();
     return $obj;
 }