11 lines
200 B
PHP
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;
|
|
}
|