Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F105207324
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
Sat, Mar 15, 11:01
Size
604 B
Mime Type
text/x-php
Expires
Mon, Mar 17, 11:01 (2 d)
Engine
blob
Format
Raw Data
Handle
24943990
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