コード例 #1
0
ファイル: AbstractTime.php プロジェクト: Adapik/PHPASN1
 public function __construct(Identifier $identifier, ContentLength $contentLength, Content $content, array $children = [])
 {
     parent::__construct($identifier, $contentLength, $content, $children);
     if (!$this->identifier->isConstructed) {
         $this->setValue($content);
     }
 }
コード例 #2
0
ファイル: Sequence.php プロジェクト: Adapik/PHPASN1
 public function __construct(Identifier $identifier, ContentLength $contentLength, Content $content, array $children = [])
 {
     parent::__construct($identifier, $contentLength, $content, $children);
 }
コード例 #3
0
ファイル: AbstractString.php プロジェクト: Adapik/PHPASN1
 public function __construct(Identifier $identifier, ContentLength $contentLength, Content $content, array $children)
 {
     parent::__construct($identifier, $contentLength, $content, $children);
     $this->value = $content->binaryData;
 }