/home/smartonegroup/public_html/system/vendor/endroid/qr-code/src/Encoding/EncodingInterface.php
<?php

declare(strict_types=1);

namespace Endroid\QrCode\Encoding;

interface EncodingInterface extends \Stringable
{
    public function __toString(): string;
}