AbstractQrCodeInfrastructureService.php
9 months ago
QrCodeInfrastructureService.php
8 months ago
StarterQrCodeInfrastructureService.php
9 months ago
StarterQrCodeInfrastructureService.php
26 lines
| 1 | <?php |
| 2 | |
| 3 | namespace AmeliaBooking\Infrastructure\Services\QrCode; |
| 4 | |
| 5 | use Interop\Container\Exception\ContainerException; |
| 6 | |
| 7 | /** |
| 8 | * Class StarterQrCodeInfrastructureService |
| 9 | * |
| 10 | * @package AmeliaBooking\Infrastructure\Services\QrCode |
| 11 | */ |
| 12 | class StarterQrCodeInfrastructureService extends AbstractQrCodeInfrastructureService |
| 13 | { |
| 14 | /** |
| 15 | * @param array $qrData |
| 16 | * |
| 17 | * @return array |
| 18 | * |
| 19 | * @throws ContainerException |
| 20 | */ |
| 21 | public function generateQrCode($qrData) |
| 22 | { |
| 23 | return []; |
| 24 | } |
| 25 | } |
| 26 |