Changeset View
Changeset View
Standalone View
Standalone View
src/workflow/ArcanistDiffWorkflow.php
| <?php | <?php | ||||
| /** | /** | ||||
| * Sends changes from your working copy to Differential for code review. | * Sends changes from your working copy to Differential for code review. | ||||
| * | * | ||||
| * @task lintunit Lint and Unit Tests | * @task lintunit Lint and Unit Tests | ||||
| * @task message Commit and Update Messages | * @task message Commit and Update Messages | ||||
| * @task diffspec Diff Specification | * @task diffspec Diff Specification | ||||
| * @task diffprop Diff Properties | * @task diffprop Diff Properties | ||||
| */ | */ | ||||
| final class ArcanistDiffWorkflow extends ArcanistBaseWorkflow { | final class ArcanistDiffWorkflow extends ArcanistWorkflow { | ||||
| private $console; | private $console; | ||||
| private $hasWarnedExternals = false; | private $hasWarnedExternals = false; | ||||
| private $unresolvedLint; | private $unresolvedLint; | ||||
| private $excuses = array('lint' => null, 'unit' => null); | private $excuses = array('lint' => null, 'unit' => null); | ||||
| private $testResults; | private $testResults; | ||||
| private $diffID; | private $diffID; | ||||
| private $revisionID; | private $revisionID; | ||||
| ▲ Show 20 Lines • Show All 2,607 Lines • Show Last 20 Lines | |||||