![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/job-board.corals.io/vendor/stripe/stripe-php/lib/ |
<?php namespace Stripe; /** * Class BankAccount * * @property string $id * @property string $object * @property string $account * @property string $account_holder_name * @property string $account_holder_type * @property string $bank_name * @property string $country * @property string $currency * @property string $customer * @property bool $default_for_currency * @property string $fingerprint * @property string $last4 * @property AttachedObject $metadata * @property string $routing_number * @property string $status * * @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; } }