| Current Path : /srv/web/sites/trentinoplant.it/httpdocs/vendor/endroid/qr-code/src/Writer/ |
| Current File : /srv/web/sites/trentinoplant.it/httpdocs/vendor/endroid/qr-code/src/Writer/WriterInterface.php |
<?php
declare(strict_types=1);
namespace Endroid\QrCode\Writer;
use Endroid\QrCode\Label\LabelInterface;
use Endroid\QrCode\Logo\LogoInterface;
use Endroid\QrCode\QrCodeInterface;
use Endroid\QrCode\Writer\Result\ResultInterface;
interface WriterInterface
{
/** @param array<string, mixed> $options */
public function write(QrCodeInterface $qrCode, LogoInterface $logo = null, LabelInterface $label = null, array $options = []): ResultInterface;
}