mirror of
https://we.phorge.it/source/arcanist.git
synced 2025-02-22 11:39:03 +01:00
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
10 lines
151 B
PHP
10 lines
151 B
PHP
<?php
|
|
|
|
final class ArcanistFeatureWorkflow
|
|
extends ArcanistFeatureBaseWorkflow {
|
|
|
|
public function getWorkflowName() {
|
|
return 'feature';
|
|
}
|
|
|
|
}
|