mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-20 13:52:40 +01:00
23786784ef
Summary: Adds the Balanced PHP API to externals/. Ref T2787. Test Plan: Used in next diff. Reviewers: btrahan, chad Reviewed By: chad CC: aran, aurelijus Maniphest Tasks: T2787 Differential Revision: https://secure.phabricator.com/D5764
23 lines
557 B
PHP
23 lines
557 B
PHP
<?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());
|
|
}
|
|
}
|