Changeset View
Changeset View
Standalone View
Standalone View
src/workflow/ArcanistWorkflow.php
| Show First 20 Lines • Show All 102 Lines • ▼ Show 20 Lines | abstract class ArcanistWorkflow extends Phobject { | ||||
| /** | /** | ||||
| * Return console formatted string with command help printed in `arc help`. | * Return console formatted string with command help printed in `arc help`. | ||||
| * | * | ||||
| * @return string 10-space indented help to use the command. | * @return string 10-space indented help to use the command. | ||||
| */ | */ | ||||
| abstract public function getCommandHelp(); | abstract public function getCommandHelp(); | ||||
| final public function supportsToolset($toolset) { | |||||
| return ($toolset === 'arc'); | |||||
| } | |||||
| /* -( Conduit )------------------------------------------------------------ */ | /* -( Conduit )------------------------------------------------------------ */ | ||||
| /** | /** | ||||
| * Set the URI which the workflow will open a conduit connection to when | * Set the URI which the workflow will open a conduit connection to when | ||||
| * @{method:establishConduit} is called. Arcanist makes an effort to set | * @{method:establishConduit} is called. Arcanist makes an effort to set | ||||
| * this by default for all workflows (by reading ##.arcconfig## and/or the | * this by default for all workflows (by reading ##.arcconfig## and/or the | ||||
| ▲ Show 20 Lines • Show All 2,020 Lines • Show Last 20 Lines | |||||