Your IP : 216.73.216.224


Current Path : /var/www/html/components/com_jdonation/payments/stripe/lib/
Upload File :
Current File : /var/www/html/components/com_jdonation/payments/stripe/lib/BankAccount.php

<?php

namespace Stripe;

/**
 * Class BankAccount
 *
 * @package Stripe
 */
class BankAccount extends ExternalAccount
{
    /**
     * @param array|null $params
     * @param array|string|null $options
     *
     * @return BankAccount The verified bank account.
     */
    public function verify($params = null, $options = null)
    {
        $url = $this->instanceUrl() . '/verify';
        list($response, $opts) = $this->_request('post', $url, $params, $options);
        $this->refreshFrom($response, $opts);
        return $this;
    }
}