mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-22 06:42:41 +01:00
0f2e277cd9
Summary: Ref T13490. Moves "arc amend" to Toolsets with modern ref/hardpoint code. Test Plan: Ran "arc amend --show", "--revision", etc. Hit all the prompts and errors, probably? Maniphest Tasks: T13490 Differential Revision: https://secure.phabricator.com/D21095
11 lines
237 B
PHP
11 lines
237 B
PHP
<?php
|
|
|
|
abstract class ArcanistWorkflowGitHardpointQuery
|
|
extends ArcanistRuntimeHardpointQuery {
|
|
|
|
final protected function canLoadHardpoint() {
|
|
$api = $this->getRepositoryAPI();
|
|
return ($api instanceof ArcanistGitAPI);
|
|
}
|
|
|
|
}
|