mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-25 00:02:41 +01:00
ff6ccd5f68
Summary: Ref T9134. It looks like this functionality was removed in D13848. Test Plan: Submitted a diff successfully. Reviewers: #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: Korvin Maniphest Tasks: T9134 Differential Revision: https://secure.phabricator.com/D13869
12 lines
239 B
PHP
12 lines
239 B
PHP
<?php
|
|
|
|
final class DifferentialLintStatus extends Phobject {
|
|
|
|
const LINT_NONE = 0;
|
|
const LINT_OKAY = 1;
|
|
const LINT_WARN = 2;
|
|
const LINT_FAIL = 3;
|
|
const LINT_SKIP = 4;
|
|
const LINT_AUTO_SKIP = 6;
|
|
|
|
}
|