Sindbad~EG File Manager

Current Path : /proc/self/cwd/vendor/omnipay/stripe/src/Message/
Upload File :
Current File : //proc/self/cwd/vendor/omnipay/stripe/src/Message/DeleteCustomerRequest.php

<?php

/**
 * Stripe Delete Customer Request.
 */
namespace Omnipay\Stripe\Message;

/**
 * Stripe Delete Customer Request.
 *
 * Permanently deletes a customer. It cannot be undone. Also immediately
 * cancels any active subscriptions on the customer.
 *
 * @link https://stripe.com/docs/api#delete_customer
 */
class DeleteCustomerRequest extends AbstractRequest
{
    public function getData()
    {
        $this->validate('customerReference');

        return;
    }

    public function getHttpMethod()
    {
        return 'DELETE';
    }

    public function getEndpoint()
    {
        return $this->endpoint.'/customers/'.$this->getCustomerReference();
    }
}

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists