1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2025-02-22 11:39:03 +01:00
phorge-arcanist/src/workflow/ArcanistFeatureWorkflow.php
epriestley 9a198ffcc5 Update "feature", "branch", and "bookmark" flows to report properly in "arc help"
Summary:
Ref T13490. These workflows are aliases of one another, which is a little silly, but currently all identify as "arc feature" in "arc help".

Straighten that out, at least.

Test Plan: Ran "arc help", "arc branch".

Maniphest Tasks: T13490

Differential Revision: https://secure.phabricator.com/D21086
2020-04-12 13:16:07 -07:00

10 lines
151 B
PHP

<?php
final class ArcanistFeatureWorkflow
extends ArcanistFeatureBaseWorkflow {
public function getWorkflowName() {
return 'feature';
}
}