mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-28 17:52:43 +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 DifferentialLintStatus {
|
|
|
|
const LINT_NONE = 0;
|
|
const LINT_OKAY = 1;
|
|
const LINT_WARN = 2;
|
|
const LINT_FAIL = 3;
|
|
const LINT_SKIP = 4;
|
|
const LINT_POSTPONED = 5;
|
|
const LINT_AUTO_SKIP = 6;
|
|
|
|
}
|