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);
    }