Page MenuHomeSealhub

UnitTestableArcanistLintEngine.php
No OneTemporary

UnitTestableArcanistLintEngine.php

<?php
/**
* Lint engine for use in constructing test cases. See
* @{class:ArcanistLinterTestCase}.
*
* @group testcase
*/
final class UnitTestableArcanistLintEngine extends ArcanistLintEngine {
protected $linters = array();
public function addLinter($linter) {
$this->linters[] = $linter;
return $this;
}
public function addFileData($path, $data) {
$this->fileData[$path] = $data;
return $this;
}
protected function buildLinters() {
return $this->linters;
}
}

File Metadata

Mime Type
text/x-php
Expires
Thu, Jul 3, 17:58 (4 h, 38 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
799694
Default Alt Text
UnitTestableArcanistLintEngine.php (505 B)

Event Timeline