1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-14 19:02:41 +01:00
phorge-phorge/src/applications/differential/constants/DifferentialLintStatus.php

13 lines
258 B
PHP
Raw Normal View History

<?php
final class DifferentialLintStatus {
2011-01-24 20:01:53 +01:00
const LINT_NONE = 0;
const LINT_OKAY = 1;
const LINT_WARN = 2;
const LINT_FAIL = 3;
const LINT_SKIP = 4;
const LINT_POSTPONED = 5;
}