ispt4.0_laravel/vendor/endroid/qr-code/src/Matrix/MatrixFactoryInterface.php
2024-02-14 08:04:25 +00:00

13 lines
211 B
PHP

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