mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-25 16:22:42 +01:00
Fix visibility of future linter methods
This commit is contained in:
parent
81171ca39d
commit
688e159319
2 changed files with 4 additions and 4 deletions
|
@ -4,8 +4,8 @@ abstract class ArcanistFutureLinter extends ArcanistLinter {
|
|||
|
||||
private $futures;
|
||||
|
||||
abstract function buildFutures(array $paths);
|
||||
abstract function resolveFuture($path, Future $future);
|
||||
abstract protected function buildFutures(array $paths);
|
||||
abstract protected function resolveFuture($path, Future $future);
|
||||
|
||||
public function willLintPaths(array $paths) {
|
||||
$this->futures = $this->buildFutures($paths);
|
||||
|
|
|
@ -77,7 +77,7 @@ final class ArcanistPEP8Linter extends ArcanistFutureLinter {
|
|||
return $bin;
|
||||
}
|
||||
|
||||
public function buildFutures(array $paths) {
|
||||
protected function buildFutures(array $paths) {
|
||||
$severity = ArcanistLintSeverity::SEVERITY_WARNING;
|
||||
if (!$this->getEngine()->isSeverityEnabled($severity)) {
|
||||
return;
|
||||
|
@ -101,7 +101,7 @@ final class ArcanistPEP8Linter extends ArcanistFutureLinter {
|
|||
return $futures;
|
||||
}
|
||||
|
||||
public function resolveFuture($path, Future $future) {
|
||||
protected function resolveFuture($path, Future $future) {
|
||||
list($rc, $stdout) = $future->resolve();
|
||||
$lines = explode("\n", $stdout);
|
||||
$messages = array();
|
||||
|
|
Loading…
Reference in a new issue