fuc/vendor/endroid/qr-code/src/Matrix/MatrixFactoryInterface.php
2025-02-23 13:30:57 +08:00

13 lines
211 B
PHP
Executable File

<?php
declare(strict_types=1);
namespace Endroid\QrCode\Matrix;
use Endroid\QrCode\QrCodeInterface;
interface MatrixFactoryInterface
{
public function create(QrCodeInterface $qrCode): MatrixInterface;
}