Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F104839931
Token.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Wed, Mar 12, 19:32
Size
610 B
Mime Type
text/x-php
Expires
Fri, Mar 14, 19:32 (1 d, 18 h)
Engine
blob
Format
Raw Data
Handle
24861823
Attached To
rPH Phabricator
Token.php
View Options
<?php
class
Stripe_Token
extends
Stripe_ApiResource
{
/**
* @param string $id The ID of the token to retrieve.
* @param string|null $apiKey
*
* @return Stripe_Token
*/
public
static
function
retrieve
(
$id
,
$apiKey
=
null
)
{
$class
=
get_class
();
return
self
::
_scopedRetrieve
(
$class
,
$id
,
$apiKey
);
}
/**
* @param array|null $params
* @param string|null $apiKey
*
* @return Stripe_Coupon The created token.
*/
public
static
function
create
(
$params
=
null
,
$apiKey
=
null
)
{
$class
=
get_class
();
return
self
::
_scopedCreate
(
$class
,
$params
,
$apiKey
);
}
}
Event Timeline
Log In to Comment