| 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 |
|