Пример #1
0
 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
 public function __construct(Identifier $identifier, ContentLength $contentLength, Content $content, array $children = [])
 {
     parent::__construct($identifier, $contentLength, $content, $children);
 }
Пример #3
0
 public function __construct(Identifier $identifier, ContentLength $contentLength, Content $content, array $children)
 {
     parent::__construct($identifier, $contentLength, $content, $children);
     $this->value = $content->binaryData;
 }