|
1
|
<?php |
|
2
|
|
|
3
|
namespace AmeliaBooking\Application\Commands\Mobile\Events; |
|
4
|
|
|
5
|
use AmeliaBooking\Application\Commands\QrCode\ScanQrCodeCommand; |
|
6
|
|
|
7
|
class ScanEventTicketCommand extends ScanQrCodeCommand |
|
8
|
{ |
|
9
|
public function __construct($args) |
|
10
|
{ |
|
11
|
parent::__construct($args); |
|
12
|
} |
|
13
|
} |
|
14
|
|