diff --git a/src/applications/phriction/constants/PhrictionDocumentStatus.php b/src/applications/phriction/constants/PhrictionDocumentStatus.php index dc33124c1d..88fad77d5b 100644 --- a/src/applications/phriction/constants/PhrictionDocumentStatus.php +++ b/src/applications/phriction/constants/PhrictionDocumentStatus.php @@ -1,22 +1,23 @@ <?php /** * @group phriction */ 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_STUB => 'stubbed', ); return idx($map, $const, 'unknown'); } }