← Back
Editing: GenericTag.php
<?php declare(strict_types=1); namespace CBOR\Tag; use CBOR\CBORObject; use CBOR\Tag; final class GenericTag extends Tag { public static function getTagId(): int { return -1; } public static function createFromLoadedData(int $additionalInformation, ?string $data, CBORObject $object): Tag { return new self($additionalInformation, $data, $object); } }
Save File
Cancel