diff --git a/src/lint/linter/ArcanistFutureLinter.php b/src/lint/linter/ArcanistFutureLinter.php index d14fe49a..e9df8371 100644 --- a/src/lint/linter/ArcanistFutureLinter.php +++ b/src/lint/linter/ArcanistFutureLinter.php @@ -1,56 +1,56 @@ getFuturesLimit(); $this->futures = id(new FutureIterator(array()))->limit($limit); foreach ($this->buildFutures($paths) as $path => $future) { $this->futures->addFuture($future, $path); } } final public function lintPath($path) { return; } - final public function didLintPaths(array $paths) { + public function didLintPaths(array $paths) { if (!$this->futures) { return; } $map = array(); foreach ($this->futures as $path => $future) { $this->setActivePath($path); $this->resolveFuture($path, $future); $map[$path] = $future; } $this->futures = array(); $this->didResolveLinterFutures($map); } /** * Hook for cleaning up resources. * * This is invoked after a block of futures resolve, and allows linters to * discard or clean up any shared resources they no longer need. * * @param map Map of paths to resolved futures. * @return void */ protected function didResolveLinterFutures(array $futures) { return; } }