%PDF- %PDF-
Direktori : /www/varak.net/nextcloud.varak.net/nextcloud/3rdparty/spomky-labs/cbor-php/src/ |
Current File : //www/varak.net/nextcloud.varak.net/nextcloud/3rdparty/spomky-labs/cbor-php/src/OtherObject.php |
<?php declare(strict_types=1); namespace CBOR; use CBOR\OtherObject\OtherObjectInterface; abstract class OtherObject extends AbstractCBORObject implements OtherObjectInterface { private const MAJOR_TYPE = self::MAJOR_TYPE_OTHER_TYPE; public function __construct( int $additionalInformation, protected ?string $data ) { parent::__construct(self::MAJOR_TYPE, $additionalInformation); } public function __toString(): string { $result = parent::__toString(); if ($this->data !== null) { $result .= $this->data; } return $result; } public function getContent(): ?string { return $this->data; } }