FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ameliabooking
/
src
/
Application
/
Controller
/
Import
Edit File: ImportCustomersController.php
<?php namespace AmeliaBooking\Application\Controller\Import; use AmeliaBooking\Application\Commands\Import\ImportCustomersCommand; use AmeliaBooking\Application\Controller\Controller; use Slim\Http\Request; /** * Class ImportCustomersController * * @package AmeliaBooking\Application\Controller\Import */ class ImportCustomersController extends Controller { public $allowedFields = [ 'data', 'number', 'overwrite' ]; /** * Instantiates the Import Customers command to hand it over to the Command Handler * * @param Request $request * @param $args * * @return ImportCustomersCommand * @throws \RuntimeException */ protected function instantiateCommand(Request $request, $args) { $command = new ImportCustomersCommand($args); $command->setField('params', (array)$request->getParams()); $requestBody = $request->getParsedBody(); $this->setCommandFields($command, $requestBody); return $command; } }
Save
Back