Changeset View
Changeset View
Standalone View
Standalone View
src/workflow/ArcanistPatchWorkflow.php
| <?php | <?php | ||||
| /** | /** | ||||
| * Applies changes from Differential or a file to the working copy. | * Applies changes from Differential or a file to the working copy. | ||||
| */ | */ | ||||
| final class ArcanistPatchWorkflow extends ArcanistBaseWorkflow { | final class ArcanistPatchWorkflow extends ArcanistWorkflow { | ||||
| const SOURCE_BUNDLE = 'bundle'; | const SOURCE_BUNDLE = 'bundle'; | ||||
| const SOURCE_PATCH = 'patch'; | const SOURCE_PATCH = 'patch'; | ||||
| const SOURCE_REVISION = 'revision'; | const SOURCE_REVISION = 'revision'; | ||||
| const SOURCE_DIFF = 'diff'; | const SOURCE_DIFF = 'diff'; | ||||
| private $source; | private $source; | ||||
| private $sourceParam; | private $sourceParam; | ||||
| ▲ Show 20 Lines • Show All 1,065 Lines • Show Last 20 Lines | |||||