11 lines
163 B
PHP
Executable File
11 lines
163 B
PHP
Executable File
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Endroid\QrCode\Encoding;
|
|
|
|
interface EncodingInterface extends \Stringable
|
|
{
|
|
public function __toString(): string;
|
|
}
|