LDAPAccountManager/lam/lib/3rdParty/composer/spomky-labs/cbor-php/src/TagObject.php

57 lines
1.2 KiB
PHP

<?php
declare(strict_types=1);
/*
* The MIT License (MIT)
*
* Copyright (c) 2018 Spomky-Labs
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.
*/
namespace CBOR;
abstract class TagObject extends AbstractCBORObject
{
private const MAJOR_TYPE = 0b110;
/**
* @var string|null
*/
protected $data;
/**
* @var CBORObject
*/
protected $object;
public function __construct(int $additionalInformation, ?string $data, CBORObject $object)
{
parent::__construct(self::MAJOR_TYPE, $additionalInformation);
$this->data = $data;
$this->object = $object;
}
abstract public static function getTagId(): int;
abstract public static function createFromLoadedData(int $additionalInformation, ?string $data, CBORObject $object): self;
public function getValue(): CBORObject
{
return $this->object;
}
public function __toString(): string
{
$result = parent::__toString();
if (null !== $this->data) {
$result .= $this->data;
}
$result .= (string) $this->object;
return $result;
}
}