File "EpochTag.php"
Full path: E:/sites/Single15/tinmung2007/webroot/XAMMP/phpMyAdmin/vendor/spomky-labs/cbor-php/src/Tag/EpochTag.php
File size: 1.02 KiB (1044 bytes)
MIME-type:
Charset: utf-8
<?php
declare(strict_types=1);
/*
* The MIT License (MIT)
*
* Copyright (c) 2018-2020 Spomky-Labs
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.
*/
namespace CBOR\Tag;
use CBOR\CBORObject;
use CBOR\TagObject as Base;
use DateTimeImmutable;
final class EpochTag extends Base
{
public static function getTagId(): int
{
return 0;
}
public static function createFromLoadedData(int $additionalInformation, ?string $data, CBORObject $object): Base
{
return new self($additionalInformation, $data, $object);
}
public static function create(CBORObject $object): Base
{
return new self(0, null, $object);
}
public function getNormalizedData(bool $ignoreTags = false)
{
if ($ignoreTags) {
return $this->object->getNormalizedData($ignoreTags);
}
return DateTimeImmutable::createFromFormat(DATE_RFC3339, $this->object->getNormalizedData($ignoreTags));
}
}