Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96347674
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
Wed, Dec 25, 17:01
Size
557 B
Mime Type
text/x-php
Expires
Fri, Dec 27, 17:01 (1 d, 12 h)
Engine
blob
Format
Raw Data
Handle
23146454
Attached To
rPH Phabricator
Event.php
View Options
<?php
namespace
Balanced
;
use
Balanced\Resource
;
use
\RESTful\URISpec
;
/*
* An Event is a snapshot of another resource at a point in time when
* something significant occurred. Events are created when resources are
* created, updated, deleted or otherwise change state such as a Credit
* being marked as failed.
*/
class
Event
extends
Resource
{
protected
static
$_uri_spec
=
null
;
public
static
function
init
()
{
self
::
$_uri_spec
=
new
URISpec
(
'events'
,
'id'
,
'/v1'
);
self
::
$_registry
->
add
(
get_called_class
());
}
}
Event Timeline
Log In to Comment