mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 11:22:40 +01:00
b6d745b666
Summary: All classes should extend from some other class. See D13275 for some explanation. Test Plan: `arc unit` Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: epriestley, Korvin Differential Revision: https://secure.phabricator.com/D13283
18 lines
420 B
PHP
18 lines
420 B
PHP
<?php
|
|
|
|
final class PhabricatorPHIDConstants extends Phobject {
|
|
|
|
const PHID_TYPE_UNKNOWN = '????';
|
|
const PHID_TYPE_MAGIC = '!!!!';
|
|
const PHID_TYPE_STRY = 'STRY';
|
|
const PHID_TYPE_TOBJ = 'TOBJ';
|
|
const PHID_TYPE_LEGB = 'LEGB';
|
|
|
|
const PHID_TYPE_XCMT = 'XCMT';
|
|
|
|
const PHID_TYPE_XOBJ = 'XOBJ';
|
|
|
|
const PHID_TYPE_VOID = 'VOID';
|
|
const PHID_VOID = 'PHID-VOID-00000000000000000000';
|
|
|
|
}
|