X7ROOT File Manager
Current Path:
/home/notabjze/just4dastreets.com/libraries/vendor/spomky-labs/cbor-php/src
home
/
notabjze
/
just4dastreets.com
/
libraries
/
vendor
/
spomky-labs
/
cbor-php
/
src
/
ðŸ“
..
📄
AbstractCBORObject.php
(971 B)
📄
ByteStringObject.php
(1.25 KB)
📄
ByteStringWithChunkObject.php
(1.84 KB)
📄
CBORObject.php
(522 B)
📄
Decoder.php
(5.66 KB)
📄
InfiniteListObject.php
(1.62 KB)
📄
InfiniteMapObject.php
(1.79 KB)
📄
LengthCalculator.php
(1.85 KB)
📄
ListObject.php
(2.33 KB)
📄
MapItem.php
(691 B)
📄
MapObject.php
(2.23 KB)
ðŸ“
OtherObject
📄
OtherObject.php
(1021 B)
📄
SignedIntegerObject.php
(4.85 KB)
📄
Stream.php
(319 B)
📄
StringStream.php
(1.44 KB)
ðŸ“
Tag
📄
TagObject.php
(1.19 KB)
📄
TextStringObject.php
(1.25 KB)
📄
TextStringWithChunkObject.php
(1.83 KB)
📄
UnsignedIntegerObject.php
(4.86 KB)
📄
Utils.php
(1.08 KB)
Editing: MapItem.php
<?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; class MapItem { /** * @var CBORObject */ private $key; /** * @var CBORObject */ private $value; public function __construct(CBORObject $key, CBORObject $value) { $this->key = $key; $this->value = $value; } public function getKey(): CBORObject { return $this->key; } public function getValue(): CBORObject { return $this->value; } }
Upload File
Create Folder