AddCustomerCommand.php
7 years ago
AddCustomerCommandHandler.php
1 year ago
GetCustomerCommand.php
7 years ago
GetCustomerCommandHandler.php
1 year ago
GetCustomersCommand.php
7 years ago
GetCustomersCommandHandler.php
1 year ago
UpdateCustomerCommand.php
7 years ago
UpdateCustomerCommandHandler.php
1 year ago
UpdateCustomerStatusCommand.php
1 year ago
UpdateCustomerStatusCommandHandler.php
1 year ago
UpdateCustomerCommand.php
25 lines
| 1 | <?php |
| 2 | |
| 3 | namespace AmeliaBooking\Application\Commands\User\Customer; |
| 4 | |
| 5 | use AmeliaBooking\Application\Commands\Command; |
| 6 | |
| 7 | /** |
| 8 | * Class UpdateCustomerCommand |
| 9 | * |
| 10 | * @package AmeliaBooking\Application\Commands\User\Customer |
| 11 | */ |
| 12 | class UpdateCustomerCommand extends Command |
| 13 | { |
| 14 | |
| 15 | /** |
| 16 | * AddCustomerCommand constructor. |
| 17 | * |
| 18 | * @param $args |
| 19 | */ |
| 20 | public function __construct($args) |
| 21 | { |
| 22 | parent::__construct($args); |
| 23 | } |
| 24 | } |
| 25 |