Your IP : 216.73.217.13


Current Path : /home/rtorresani/www/vendor/2tvenom/cborencode/src/CBOR/Types/
Upload File :
Current File : //home/rtorresani/www/vendor/2tvenom/cborencode/src/CBOR/Types/CBORByteString.php

<?php
namespace CBOR\Types;

class CBORByteString {
    private $byte_string = null;

    public function __construct($byte_string)
    {
        $this->byte_string = $byte_string;
    }

    /**
     * @return null
     */
    public function get_byte_string()
    {
        return $this->byte_string;
    }

    /**
     * @param null $byte_string
     */
    public function set_byte_string($byte_string)
    {
        $this->byte_string = $byte_string;
    }
}