production/vendor/endroid/qr-code/src/Encoding/EncodingInterface.php
2025-12-02 11:29:44 +00:00

11 lines
163 B
PHP
Executable File

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