Changeset View
Changeset View
Standalone View
Standalone View
src/repository/api/ArcanistFilesystemAPI.php
| Show First 20 Lines • Show All 76 Lines • ▼ Show 20 Lines | final class ArcanistFilesystemAPI | ||||
| public function loadWorkingCopyDifferentialRevisions( | public function loadWorkingCopyDifferentialRevisions( | ||||
| ConduitClient $conduit, | ConduitClient $conduit, | ||||
| array $query) { | array $query) { | ||||
| throw new PhutilMethodNotImplementedException(); | throw new PhutilMethodNotImplementedException(); | ||||
| } | } | ||||
| public function getRemoteURI() { | public function getRemoteURI() { | ||||
| throw new PhutilMethodNotImplementedException(); | return null; | ||||
| } | } | ||||
| public function supportsLocalCommits() { | public function supportsLocalCommits() { | ||||
| throw new PhutilMethodNotImplementedException(); | throw new PhutilMethodNotImplementedException(); | ||||
| } | } | ||||
| protected function buildLocalFuture(array $argv) { | protected function buildLocalFuture(array $argv) { | ||||
| throw new PhutilMethodNotImplementedException(); | $future = newv('ExecFuture', $argv); | ||||
| $future->setCWD($this->getPath()); | |||||
| return $future; | |||||
| } | } | ||||
| public function supportsCommitRanges() { | public function supportsCommitRanges() { | ||||
| throw new PhutilMethodNotImplementedException(); | throw new PhutilMethodNotImplementedException(); | ||||
| } | } | ||||
| } | } | ||||