1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2024-11-22 14:52:40 +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:
Joshua Spence 2015-01-07 07:36:00 +11:00
parent cd591318ca
commit c70009d90f
6 changed files with 6 additions and 6 deletions

View file

@ -40,7 +40,7 @@ EOTEXT
); );
} }
public function shouldShellComplete() { protected function shouldShellComplete() {
return false; return false;
} }

View file

@ -37,7 +37,7 @@ EOTEXT
return true; return true;
} }
public function shouldShellComplete() { protected function shouldShellComplete() {
return false; return false;
} }

View file

@ -35,7 +35,7 @@ EOTEXT
); );
} }
public function shouldShellComplete() { protected function shouldShellComplete() {
return false; return false;
} }

View file

@ -834,7 +834,7 @@ EOTEXT
return $commit_message; return $commit_message;
} }
public function getShellCompletions(array $argv) { protected function getShellCompletions(array $argv) {
// TODO: Pull open diffs from 'arc list'? // TODO: Pull open diffs from 'arc list'?
return array('ARGUMENT'); return array('ARGUMENT');
} }

View file

@ -36,7 +36,7 @@ EOTEXT
); );
} }
public function shouldShellComplete() { protected function shouldShellComplete() {
return false; return false;
} }

View file

@ -32,7 +32,7 @@ EOTEXT
); );
} }
public function shouldShellComplete() { protected function shouldShellComplete() {
return false; return false;
} }