SwissQR: add Sprain\SwissQrBill and dependencies

This commit is contained in:
Didier 'OdyX' Raboud
2023-03-16 06:47:59 +01:00
parent 55ab3d2c56
commit f53120c915
2192 changed files with 971358 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
<?php
declare(strict_types=1);
namespace Endroid\QrCode;
use Endroid\QrCode\Color\ColorInterface;
use Endroid\QrCode\Encoding\EncodingInterface;
use Endroid\QrCode\ErrorCorrectionLevel\ErrorCorrectionLevelInterface;
use Endroid\QrCode\RoundBlockSizeMode\RoundBlockSizeModeInterface;
interface QrCodeInterface
{
public function getData(): string;
public function getEncoding(): EncodingInterface;
public function getErrorCorrectionLevel(): ErrorCorrectionLevelInterface;
public function getSize(): int;
public function getMargin(): int;
public function getRoundBlockSizeMode(): RoundBlockSizeModeInterface;
public function getForegroundColor(): ColorInterface;
public function getBackgroundColor(): ColorInterface;
}