Server IP : 192.185.129.71 / Your IP : 3.15.143.206 Web Server : Apache System : Linux bh-ht-3.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : svymadmin ( 4072) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home4/svymadmin/public_html/vivekaexcel.edu.in/school/application/libraries/stripe/lib/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php namespace Stripe; /** * Class Source * * @package Stripe */ class Source extends ApiResource { /** * @param array|string $id The ID of the source to retrieve, or an options * array containing an `id` key. * @param array|string|null $opts * * @return Source */ public static function retrieve($id, $opts = null) { return self::_retrieve($id, $opts); } /** * @param array|null $params * @param array|string|null $opts * * @return Collection of Sources */ public static function all($params = null, $opts = null) { return self::_all($params, $opts); } /** * @param array|null $params * @param array|string|null $opts * * @return Source The created Source. */ public static function create($params = null, $opts = null) { return self::_create($params, $opts); } /** * @param string $id The ID of the source to update. * @param array|null $params * @param array|string|null $options * * @return Source The updated source. */ public static function update($id, $params = null, $options = null) { return self::_update($id, $params, $options); } /** * @param array|string|null $opts * * @return Source The saved source. */ public function save($opts = null) { return $this->_save($opts); } /** * @param array|null $params * @param array|string|null $options * * @return Source The detached source. */ public function detach($params = null, $options = null) { self::_validateParams($params); $id = $this['id']; if (!$id) { $class = get_class($this); $msg = "Could not determine which URL to request: $class instance " . "has invalid ID: $id"; throw new Error\InvalidRequest($msg, null); } if ($this['customer']) { $base = Customer::classUrl(); $parentExtn = urlencode(Util\Util::utf8($this['customer'])); $extn = urlencode(Util\Util::utf8($id)); $url = "$base/$parentExtn/sources/$extn"; list($response, $opts) = $this->_request('delete', $url, $params, $options); $this->refreshFrom($response, $opts); return $this; } else { $message = "This source object does not appear to be currently attached " . "to a customer object."; throw new Error\Api($message); } } /** * @param array|null $params * @param array|string|null $options * * @return Source The detached source. * * @deprecated Use the `detach` method instead. */ public function delete($params = null, $options = null) { $this->detach($params, $options); } /** * @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; } }