[ Index ] |
PHP Cross Reference of Phabricator |
[Summary view] [Print] [Text view]
1 <?php 2 3 namespace Balanced; 4 5 use Balanced\Resource; 6 use \RESTful\URISpec; 7 8 /* 9 * An Event is a snapshot of another resource at a point in time when 10 * something significant occurred. Events are created when resources are 11 * created, updated, deleted or otherwise change state such as a Credit 12 * being marked as failed. 13 */ 14 class Event extends Resource 15 { 16 protected static $_uri_spec = null; 17 18 public static function init() 19 { 20 self::$_uri_spec = new URISpec('events', 'id', '/v1'); 21 self::$_registry->add(get_called_class()); 22 } 23 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Sun Nov 30 09:20:46 2014 | Cross-referenced by PHPXref 0.7.1 |