Changeset View
Changeset View
Standalone View
Standalone View
src/workflow/ArcanistBackoutWorkflow.php
| <?php | <?php | ||||
| /** | /** | ||||
| * Runs git revert and assigns a high priority task to original author. | * Runs git revert and assigns a high priority task to original author. | ||||
| */ | */ | ||||
| final class ArcanistBackoutWorkflow extends ArcanistBaseWorkflow { | final class ArcanistBackoutWorkflow extends ArcanistWorkflow { | ||||
| private $console; | private $console; | ||||
| private $conduit; | private $conduit; | ||||
| private $revision; | private $revision; | ||||
| public function getWorkflowName() { | public function getWorkflowName() { | ||||
| return 'backout'; | return 'backout'; | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 177 Lines • Show Last 20 Lines | |||||