Your IP : 216.73.216.84


Current Path : /home/helpink/www/libraries/vendor/spomky-labs/cbor-php/src/OtherObject/
Upload File :
Current File : /home/helpink/www/libraries/vendor/spomky-labs/cbor-php/src/OtherObject/UndefinedObject.php

<?php

declare(strict_types=1);

namespace CBOR\OtherObject;

use CBOR\OtherObject as Base;

final class UndefinedObject extends Base
{
    public function __construct()
    {
        parent::__construct(self::OBJECT_UNDEFINED, null);
    }

    public static function create(): self
    {
        return new self();
    }

    public static function supportedAdditionalInformation(): array
    {
        return [self::OBJECT_UNDEFINED];
    }

    public static function createFromLoadedData(int $additionalInformation, ?string $data): Base
    {
        return new self();
    }
}