BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
public_html
/
app.imagivibe.com
/
vendor
/
rybakit
/
msgpack
/
src
/
Type
📤 Upload
📝 New File
📁 New Folder
Close
Editing: Bin.php
<?php /** * This file is part of the rybakit/msgpack.php package. * * (c) Eugene Leonovich <gen.work@gmail.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace MessagePack\Type; use MessagePack\CanBePacked; use MessagePack\Packer; final class Bin implements CanBePacked { /** @readonly */ public $data; public function __construct(string $data) { $this->data = $data; } public function pack(Packer $packer) : string { return $packer->packBin($this->data); } }
Save
Cancel