mirror of
https://we.phorge.it/source/arcanist.git
synced 2025-04-09 10:58:32 +02:00
Summary: Depends on D20986. Ref T13395. This //mostly// collapses the entire "experimental" branch into "master". I plan to change the "Ref/Hardpoint" pattern to become future oriented, but this is more steps forward than sideways. Test Plan: Ran various `arc` workflows. Maniphest Tasks: T13395 Differential Revision: https://secure.phabricator.com/D20987
10 lines
207 B
PHP
10 lines
207 B
PHP
<?php
|
|
|
|
abstract class ArcanistGitHardpointLoader
|
|
extends ArcanistHardpointLoader {
|
|
|
|
public function canLoadRepositoryAPI(ArcanistRepositoryAPI $api) {
|
|
return ($api instanceof ArcanistGitAPI);
|
|
}
|
|
|
|
}
|