mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-14 19:02:41 +01:00
936ee22de1
Summary: Fixes T5536. Some bonus pht in there. Test Plan: made a diff hovered over the stars and saw my new text. Reviewers: epriestley Reviewed By: epriestley Subscribers: epriestley, Korvin Maniphest Tasks: T5536 Differential Revision: https://secure.phabricator.com/D10487
13 lines
293 B
PHP
13 lines
293 B
PHP
<?php
|
|
|
|
final class DifferentialUnitStatus {
|
|
|
|
const UNIT_NONE = 0;
|
|
const UNIT_OKAY = 1;
|
|
const UNIT_WARN = 2;
|
|
const UNIT_FAIL = 3;
|
|
const UNIT_SKIP = 4;
|
|
const UNIT_POSTPONED = 5;
|
|
const UNIT_AUTO_SKIP = 6;
|
|
|
|
}
|