PATH:
home
/
letacommog
/
winwithd
/
wp-content
/
plugins
/
pms-add-on-stripe
/
libs
/
stripe
/
lib
/
ApiOperations
<?php namespace Stripe\ApiOperations; /** * Trait for retrievable resources. Adds a `retrieve()` static method to the * class. * * This trait should only be applied to classes that derive from StripeObject. */ trait Retrieve { /** * @param array|string $id The ID of the API resource to retrieve, * or an options array containing an `id` key. * @param array|string|null $opts * * @return static */ public static function retrieve($id, $opts = null) { $opts = \Stripe\Util\RequestOptions::parse($opts); $instance = new static($id, $opts); $instance->refresh(); return $instance; } }
[+]
..
[-] All.php
[edit]
[-] Request.php
[edit]
[-] NestedResource.php
[edit]
[-] Delete.php
[edit]
[-] Update.php
[edit]
[-] Retrieve.php
[edit]
[-] Create.php
[edit]