Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101887794
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
Fri, Feb 14, 18:47
Size
604 B
Mime Type
text/x-php
Expires
Sun, Feb 16, 18:47 (2 d)
Engine
blob
Format
Raw Data
Handle
24247662
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