mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-22 06:42:41 +01:00
Setting default minimumSeverity to zero from null
Summary: In hphp's version of idx, it uses debug_rlog() which is not available in phabricator's code. It will be executed if null is passed as the second value to idx. Test Plan: ran arc lint which still report error message, and php ./scripts/arcanist.php unit src/lint/linter/xhpast/__test__ doesn't throw. Reviewed By: epriestley Reviewers: tuomaspelkonen, epriestley CC: aran, jungejason, epriestley Differential Revision: 666
This commit is contained in:
parent
2d50e08ee6
commit
b3a9ee3d84
1 changed files with 1 additions and 1 deletions
|
@ -65,7 +65,7 @@ abstract class ArcanistLintEngine {
|
||||||
protected $charToLine = array();
|
protected $charToLine = array();
|
||||||
protected $lineToFirstChar = array();
|
protected $lineToFirstChar = array();
|
||||||
private $results = array();
|
private $results = array();
|
||||||
private $minimumSeverity = null;
|
private $minimumSeverity = ArcanistLintSeverity::SEVERITY_DISABLED;
|
||||||
|
|
||||||
private $changedLines = array();
|
private $changedLines = array();
|
||||||
private $commitHookMode = false;
|
private $commitHookMode = false;
|
||||||
|
|
Loading…
Reference in a new issue