Omnipay\PayPal\RestGateway::deleteCard PHP 메소드

deleteCard() 공개 메소드

Updating a card in the vault is no longer supported -- see http://stackoverflow.com/questions/20858910/paypal-rest-api-update-a-stored-credit-card Therefore the only way to update a card is to remove it using deleteCard and then re-add it using createCard.
public deleteCard ( array $parameters = [] ) : Omnipay\PayPal\Message\RestDeleteCardRequest
$parameters array
리턴 Omnipay\PayPal\Message\RestDeleteCardRequest
    public function deleteCard(array $parameters = array())
    {
        return $this->createRequest('\\Omnipay\\PayPal\\Message\\RestDeleteCardRequest', $parameters);
    }