mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-01 03:02:43 +01:00
8756d82cf6
Summary: I'm pretty sure that `@group` annotations are useless now... see D9855. Also fixed various other minor issues. Test Plan: Eye-ball it. Reviewers: #blessed_reviewers, epriestley, chad Reviewed By: #blessed_reviewers, epriestley Subscribers: epriestley, Korvin, hach-que Differential Revision: https://secure.phabricator.com/D9859
21 lines
502 B
PHP
21 lines
502 B
PHP
<?php
|
|
|
|
final class PhrictionDocumentStatus extends PhrictionConstants {
|
|
|
|
const STATUS_EXISTS = 0;
|
|
const STATUS_DELETED = 1;
|
|
const STATUS_MOVED = 2;
|
|
const STATUS_STUB = 3;
|
|
|
|
public static function getConduitConstant($const) {
|
|
static $map = array(
|
|
self::STATUS_EXISTS => 'exists',
|
|
self::STATUS_DELETED => 'deleted',
|
|
self::STATUS_MOVED => 'moved',
|
|
self::STATUS_STUB => 'stubbed',
|
|
);
|
|
|
|
return idx($map, $const, 'unknown');
|
|
}
|
|
|
|
}
|