Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96154411
Event.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
Mon, Dec 23, 06:02
Size
604 B
Mime Type
text/x-php
Expires
Wed, Dec 25, 06:02 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23134170
Attached To
rPH Phabricator
Event.php
View Options
<?php
class
Stripe_Event
extends
Stripe_ApiResource
{
/**
* @param string $id The ID of the event to retrieve.
* @param string|null $apiKey
*
* @return Stripe_Event
*/
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 array An array of Stripe_Events.
*/
public
static
function
all
(
$params
=
null
,
$apiKey
=
null
)
{
$class
=
get_class
();
return
self
::
_scopedAll
(
$class
,
$params
,
$apiKey
);
}
}
Event Timeline
Log In to Comment