File manager - Edit - /home/premiey/www/wp-content/plugins/ameliabooking/src/Application/Controller/Booking/Appointment/CancelBookingRemotelyController.php
Back
<?php namespace AmeliaBooking\Application\Controller\Booking\Appointment; use AmeliaBooking\Application\Commands\Booking\Appointment\CancelBookingRemotelyCommand; use AmeliaBooking\Application\Commands\Booking\Appointment\UpdateBookingStatusCommand; use AmeliaBooking\Application\Commands\CommandResult; use AmeliaBooking\Application\Controller\Controller; use AmeliaBooking\Domain\Events\DomainEventBus; use Slim\Http\Request; /** * Class CancelBookingRemotelyController * * @package AmeliaBooking\Application\Controller\Booking\Appointment */ class CancelBookingRemotelyController extends Controller { /** * Fields for calendar service that can be received from front-end * * @var array */ protected $allowedFields = [ 'token', 'type', ]; /** * Instantiates the Update Appointment command to hand it over to the Command Handler * * @param Request $request * @param $args * * @return CancelBookingRemotelyCommand * @throws \RuntimeException */ protected function instantiateCommand(Request $request, $args) { $command = new CancelBookingRemotelyCommand($args); $requestBody = $request->getParsedBody(); $command->setField('token', (string)$request->getQueryParam('token', '')); $command->setField('type', (string)$request->getQueryParam('type', '')); $this->setCommandFields($command, $requestBody); return $command; } /** * @param DomainEventBus $eventBus * @param CommandResult $result * * @return void */ protected function emitSuccessEvent(DomainEventBus $eventBus, CommandResult $result) { $eventBus->emit('BookingCanceled', $result); } }
| ver. 1.4 |
Github
|
.
| PHP 5.4.45 | Generation time: 0 |
proxy
|
phpinfo
|
Settings