mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-01 03:02:43 +01:00
b85f8b91de
Summary: Ref T4100. This just makes the "specify stuff in query parameters" workflow a little better: - You can now do `?projects=differential,diffusion`. - You can now do `?projects=projects(alincoln)`. Test Plan: Did that stuff ^^^^ Reviewers: btrahan Reviewed By: btrahan Subscribers: epriestley Maniphest Tasks: T4100 Differential Revision: https://secure.phabricator.com/D12468
18 lines
403 B
PHP
18 lines
403 B
PHP
<?php
|
|
|
|
final class PhabricatorPHIDConstants {
|
|
|
|
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';
|
|
|
|
}
|