whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
mollie
/
mollie-api-php
/
src
/
Endpoints
/
Upload File:
files >> //home/kckglobal/www/portal/vendor/mollie/mollie-api-php/src/Endpoints/MethodIssuerEndpoint.php
<?php declare(strict_types=1); namespace Mollie\Api\Endpoints; use Mollie\Api\Exceptions\ApiException; use Mollie\Api\Resources\Issuer; class MethodIssuerEndpoint extends EndpointAbstract { protected $resourcePath = 'profiles_methods_issuers'; protected $profileId = null; protected $methodId = null; protected $issuerId = null; /** * @param string $profileId * @param string $methodId * @param string $issuerId * @return Issuer * @throws \Mollie\Api\Exceptions\ApiException */ public function enable(string $profileId, string $methodId, string $issuerId) { $this->profileId = $profileId; $this->methodId = $methodId; $this->issuerId = $issuerId; $response = $this->rest_create([], []); $this->resetResourceIds(); return $response; } public function disable(string $profileId, string $methodId, string $issuerId) { $this->profileId = $profileId; $this->methodId = $methodId; return $this->rest_delete($issuerId); } protected function resetResourceIds() { $this->profileId = null; $this->methodId = null; $this->issuerId = null; } /** * @return string * @throws ApiException */ public function getResourcePath() { if (! $this->profileId) { throw new ApiException("No profileId provided."); } if (! $this->methodId) { throw new ApiException("No methodId provided."); } $path = "profiles/{$this->profileId}/methods/{$this->methodId}/issuers"; if ($this->issuerId) { $path .= "/$this->issuerId"; } return $path; } /** * Get the object that is used by this API endpoint. Every API endpoint uses one type of object. * * @return Issuer */ protected function getResourceObject() { return new Issuer($this->client); } }
Copyright ©2021 || Defacer Indonesia