Files
trf_certest/vendor/endroid/qr-code/src/Encoding/EncodingInterface.php
T
2025-03-28 08:52:46 +01:00

11 lines
163 B
PHP

<?php
declare(strict_types=1);
namespace Endroid\QrCode\Encoding;
interface EncodingInterface extends \Stringable
{
public function __toString(): string;
}