mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-22 06:42:41 +01:00
Fix visibility of various ArcanistWorkflow
methods
Summary: Ref T6822. Test Plan: Visual inspection. These methods are only called from within the `ArcanistShellCompleteWorkflow` class. Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: Korvin, epriestley Maniphest Tasks: T6822 Differential Revision: https://secure.phabricator.com/D11238
This commit is contained in:
parent
cd591318ca
commit
c70009d90f
6 changed files with 6 additions and 6 deletions
|
@ -40,7 +40,7 @@ EOTEXT
|
|||
);
|
||||
}
|
||||
|
||||
public function shouldShellComplete() {
|
||||
protected function shouldShellComplete() {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
|
@ -37,7 +37,7 @@ EOTEXT
|
|||
return true;
|
||||
}
|
||||
|
||||
public function shouldShellComplete() {
|
||||
protected function shouldShellComplete() {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
|
@ -35,7 +35,7 @@ EOTEXT
|
|||
);
|
||||
}
|
||||
|
||||
public function shouldShellComplete() {
|
||||
protected function shouldShellComplete() {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
|
@ -834,7 +834,7 @@ EOTEXT
|
|||
return $commit_message;
|
||||
}
|
||||
|
||||
public function getShellCompletions(array $argv) {
|
||||
protected function getShellCompletions(array $argv) {
|
||||
// TODO: Pull open diffs from 'arc list'?
|
||||
return array('ARGUMENT');
|
||||
}
|
||||
|
|
|
@ -36,7 +36,7 @@ EOTEXT
|
|||
);
|
||||
}
|
||||
|
||||
public function shouldShellComplete() {
|
||||
protected function shouldShellComplete() {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@ EOTEXT
|
|||
);
|
||||
}
|
||||
|
||||
public function shouldShellComplete() {
|
||||
protected function shouldShellComplete() {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue