AddPaymentCommand.php
7 years ago
AddPaymentCommandHandler.php
2 years ago
CalculatePaymentAmountCommand.php
3 years ago
CalculatePaymentAmountCommandHandler.php
3 years ago
DeletePaymentCommand.php
7 years ago
DeletePaymentCommandHandler.php
2 years ago
GetPaymentCommand.php
7 years ago
GetPaymentCommandHandler.php
1 year ago
GetPaymentsCommand.php
7 years ago
GetPaymentsCommandHandler.php
1 year ago
UpdatePaymentCommand.php
7 years ago
UpdatePaymentCommandHandler.php
2 years ago
AddPaymentCommand.php
20 lines
| 1 | <?php |
| 2 | /** |
| 3 | * @copyright © TMS-Plugins. All rights reserved. |
| 4 | * @licence See LICENCE.md for license details. |
| 5 | */ |
| 6 | |
| 7 | namespace AmeliaBooking\Application\Commands\Payment; |
| 8 | |
| 9 | use AmeliaBooking\Application\Commands\Command; |
| 10 | |
| 11 | /** |
| 12 | * Class AddPaymentCommand |
| 13 | * |
| 14 | * @package AmeliaBooking\Application\Commands\Payment |
| 15 | */ |
| 16 | class AddPaymentCommand extends Command |
| 17 | { |
| 18 | |
| 19 | } |
| 20 |