File manager - Edit - /home/premiey/www/wp-content/plugins/ameliabooking/vendor/omnipay/mollie/src/Message/Request/FetchCustomerRequest.php
Back
<?php namespace Omnipay\Mollie\Message\Request; use Omnipay\Common\Exception\InvalidRequestException; use Omnipay\Common\Message\AbstractRequest; use Omnipay\Mollie\Message\Response\FetchCustomerResponse; /** * Retrieve a single customer by its ID. * * @see https://docs.mollie.com/reference/v2/customers-api/get-customer * @method FetchCustomerResponse send() */ class FetchCustomerRequest extends AbstractMollieRequest { /** * @return string */ public function getCustomerReference() { return $this->getParameter('customerReference'); } /** * @param string $value * @return AbstractRequest */ public function setCustomerReference($value) { return $this->setParameter('customerReference', $value); } /** * @return array * @throws InvalidRequestException */ public function getData() { $this->validate('apiKey', 'customerReference'); return []; } /** * @param array $data * @return FetchCustomerResponse */ public function sendData($data) { $response = $this->sendRequest(self::GET, '/customers/' . $this->getCustomerReference(), $data); return $this->response = new FetchCustomerResponse($this, $response); } }
| ver. 1.4 |
Github
|
.
| PHP 5.4.45 | Generation time: 0 |
proxy
|
phpinfo
|
Settings