File "CurrentProfile.php"
Full Path: /home/cananyalcin/public_html/core/lib/mollie/src/Resources/CurrentProfile.php
File size: 829 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Mollie\Api\Resources;
use Mollie\Api\Exceptions\ApiException;
class CurrentProfile extends \Mollie\Api\Resources\Profile
{
/**
* Enable a payment method for this profile.
*
* @param string $methodId
* @param array $data
* @return Method
* @throws ApiException
*/
public function enableMethod($methodId, array $data = [])
{
return $this->client->profileMethods->createForCurrentProfile($methodId, $data);
}
/**
* Disable a payment method for this profile.
*
* @param string $methodId
* @param array $data
* @return Method
* @throws ApiException
*/
public function disableMethod($methodId, array $data = [])
{
return $this->client->profileMethods->deleteForCurrentProfile($methodId, $data);
}
}