Files
symfony_example_app/src/Service/QRCodeQROptionsProviderInterface.php
2024-01-18 16:41:03 +01:00

11 lines
200 B
PHP

<?php
declare(strict_types=1);
namespace App\Service;
use App\Entity\Input\QRCode\QRCodeQROptions;
interface QRCodeQROptionsProviderInterface {
public function getDefault(): QRCodeQROptions;
}