AddProviderCommand.php
7 years ago
AddProviderCommandHandler.php
2 years ago
GetProviderCommand.php
7 years ago
GetProviderCommandHandler.php
1 year ago
GetProvidersCommand.php
7 years ago
GetProvidersCommandHandler.php
1 year ago
UpdateProviderCommand.php
7 years ago
UpdateProviderCommandHandler.php
1 year ago
UpdateProviderStatusCommand.php
7 years ago
UpdateProviderStatusCommandHandler.php
2 years ago
UpdateProviderCommand.php
25 lines
| 1 | <?php |
| 2 | |
| 3 | namespace AmeliaBooking\Application\Commands\User\Provider; |
| 4 | |
| 5 | use AmeliaBooking\Application\Commands\Command; |
| 6 | |
| 7 | /** |
| 8 | * Class UpdateProviderCommand |
| 9 | * |
| 10 | * @package AmeliaBooking\Application\Commands\User\Provider |
| 11 | */ |
| 12 | class UpdateProviderCommand extends Command |
| 13 | { |
| 14 | |
| 15 | /** |
| 16 | * UpdateProviderCommand constructor. |
| 17 | * |
| 18 | * @param $args |
| 19 | */ |
| 20 | public function __construct($args) |
| 21 | { |
| 22 | parent::__construct($args); |
| 23 | } |
| 24 | } |
| 25 |