Changeset View
Changeset View
Standalone View
Standalone View
src/workflow/ArcanistLandWorkflow.php
| <?php | <?php | ||||
| /** | /** | ||||
| * Lands a branch by rebasing, merging and amending it. | * Lands a branch by rebasing, merging and amending it. | ||||
| */ | */ | ||||
| final class ArcanistLandWorkflow extends ArcanistBaseWorkflow { | final class ArcanistLandWorkflow extends ArcanistWorkflow { | ||||
| private $isGit; | private $isGit; | ||||
| private $isGitSvn; | private $isGitSvn; | ||||
| private $isHg; | private $isHg; | ||||
| private $isHgSvn; | private $isHgSvn; | ||||
| private $oldBranch; | private $oldBranch; | ||||
| private $branch; | private $branch; | ||||
| ▲ Show 20 Lines • Show All 1,257 Lines • Show Last 20 Lines | |||||