AbstractQrCodeInfrastructureService.php
2 months ago
QrCodeInfrastructureService.php
2 months ago
StarterQrCodeInfrastructureService.php
2 months ago
StarterQrCodeInfrastructureService.php
17 lines
| 1 | <?php |
| 2 | |
| 3 | namespace AmeliaBooking\Infrastructure\Services\QrCode; |
| 4 | |
| 5 | /** |
| 6 | * Class StarterQrCodeInfrastructureService |
| 7 | * |
| 8 | * @package AmeliaBooking\Infrastructure\Services\QrCode |
| 9 | */ |
| 10 | class StarterQrCodeInfrastructureService extends AbstractQrCodeInfrastructureService |
| 11 | { |
| 12 | public function generateQrCode(array $qrData): array |
| 13 | { |
| 14 | return []; |
| 15 | } |
| 16 | } |
| 17 |