GetQrCodeCommand.php
6 months ago
GetQrCodeCommandHandler.php
6 months ago
ScanQrCodeCommand.php
7 months ago
ScanQrCodeCommandHandler.php
3 months ago
ScanQrCodeCommand.php
24 lines
| 1 | <?php |
| 2 | |
| 3 | namespace AmeliaBooking\Application\Commands\QrCode; |
| 4 | |
| 5 | use AmeliaBooking\Application\Commands\Command; |
| 6 | |
| 7 | /** |
| 8 | * Class ScanQrCodeCommand |
| 9 | * |
| 10 | * @package AmeliaBooking\Application\Commands\QrCode |
| 11 | */ |
| 12 | class ScanQrCodeCommand extends Command |
| 13 | { |
| 14 | /** |
| 15 | * ScanQrCodeCommand constructor. |
| 16 | * |
| 17 | * @param $args |
| 18 | */ |
| 19 | public function __construct($args) |
| 20 | { |
| 21 | parent::__construct($args); |
| 22 | } |
| 23 | } |
| 24 |