1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2025-04-09 10:58:32 +02:00
phorge-arcanist/src/loader/ArcanistGitHardpointLoader.php
epriestley 8c4f6ce161 Merge the remainder of the "experimental" branch
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
2020-02-13 06:05:08 -08:00

10 lines
207 B
PHP

<?php
abstract class ArcanistGitHardpointLoader
extends ArcanistHardpointLoader {
public function canLoadRepositoryAPI(ArcanistRepositoryAPI $api) {
return ($api instanceof ArcanistGitAPI);
}
}