feat: add QRCodeOptions provider

feat: add QRCodeOptions provider
This commit is contained in:
2024-01-16 20:29:40 +01:00
parent e89290473b
commit 928ff810e6
3 changed files with 33 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
<?php
declare(strict_types=1);
namespace App\Service;
use App\Entity\QRCode\QRCodeQROptions;
interface QRCodeQROptionsProviderInterface {
public function getDefault(): QRCodeQROptions;
}