1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-18 21:02:41 +01:00

Fix visibility of PhutilArgumentWorkflow::didConstruct methods

Summary: Ref T6822.

Test Plan: `grep`. This method is only called from within `PhutilArgumentWorkflow::__construct`.

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: Korvin, epriestley

Maniphest Tasks: T6822

Differential Revision: https://secure.phabricator.com/D11415
This commit is contained in:
Joshua Spence 2015-01-16 07:42:07 +11:00
parent c2ac63e9ad
commit daadf95537
72 changed files with 72 additions and 72 deletions

View file

@ -3,7 +3,7 @@
final class AlmanacManagementLockWorkflow final class AlmanacManagementLockWorkflow
extends AlmanacManagementWorkflow { extends AlmanacManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('lock') ->setName('lock')
->setSynopsis(pht('Lock a service to prevent it from being edited.')) ->setSynopsis(pht('Lock a service to prevent it from being edited.'))

View file

@ -3,7 +3,7 @@
final class AlmanacManagementRegisterWorkflow final class AlmanacManagementRegisterWorkflow
extends AlmanacManagementWorkflow { extends AlmanacManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('register') ->setName('register')
->setSynopsis(pht('Register this host as an Almanac device.')) ->setSynopsis(pht('Register this host as an Almanac device.'))

View file

@ -3,7 +3,7 @@
final class AlmanacManagementTrustKeyWorkflow final class AlmanacManagementTrustKeyWorkflow
extends AlmanacManagementWorkflow { extends AlmanacManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('trust-key') ->setName('trust-key')
->setSynopsis(pht('Mark a public key as trusted.')) ->setSynopsis(pht('Mark a public key as trusted.'))

View file

@ -3,7 +3,7 @@
final class AlmanacManagementUnlockWorkflow final class AlmanacManagementUnlockWorkflow
extends AlmanacManagementWorkflow { extends AlmanacManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('unlock') ->setName('unlock')
->setSynopsis(pht('Unlock a service to allow it to be edited.')) ->setSynopsis(pht('Unlock a service to allow it to be edited.'))

View file

@ -3,7 +3,7 @@
final class AlmanacManagementUntrustKeyWorkflow final class AlmanacManagementUntrustKeyWorkflow
extends AlmanacManagementWorkflow { extends AlmanacManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('untrust-key') ->setName('untrust-key')
->setSynopsis(pht('Revoke trust of a public key.')) ->setSynopsis(pht('Revoke trust of a public key.'))

View file

@ -3,7 +3,7 @@
final class PhabricatorAphlictManagementDebugWorkflow final class PhabricatorAphlictManagementDebugWorkflow
extends PhabricatorAphlictManagementWorkflow { extends PhabricatorAphlictManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
parent::didConstruct(); parent::didConstruct();
$this $this
->setName('debug') ->setName('debug')

View file

@ -3,7 +3,7 @@
final class PhabricatorAphlictManagementRestartWorkflow final class PhabricatorAphlictManagementRestartWorkflow
extends PhabricatorAphlictManagementWorkflow { extends PhabricatorAphlictManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
parent::didConstruct(); parent::didConstruct();
$this $this
->setName('restart') ->setName('restart')

View file

@ -3,7 +3,7 @@
final class PhabricatorAphlictManagementStartWorkflow final class PhabricatorAphlictManagementStartWorkflow
extends PhabricatorAphlictManagementWorkflow { extends PhabricatorAphlictManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
parent::didConstruct(); parent::didConstruct();
$this $this
->setName('start') ->setName('start')

View file

@ -3,7 +3,7 @@
final class PhabricatorAphlictManagementStatusWorkflow final class PhabricatorAphlictManagementStatusWorkflow
extends PhabricatorAphlictManagementWorkflow { extends PhabricatorAphlictManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('status') ->setName('status')
->setSynopsis(pht('Show the status of the notifications server.')) ->setSynopsis(pht('Show the status of the notifications server.'))

View file

@ -3,7 +3,7 @@
final class PhabricatorAphlictManagementStopWorkflow final class PhabricatorAphlictManagementStopWorkflow
extends PhabricatorAphlictManagementWorkflow { extends PhabricatorAphlictManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('stop') ->setName('stop')
->setSynopsis(pht('Stop the notifications server.')) ->setSynopsis(pht('Stop the notifications server.'))

View file

@ -7,7 +7,7 @@ abstract class PhabricatorAphlictManagementWorkflow
private $clientHost; private $clientHost;
private $clientPort; private $clientPort;
public function didConstruct() { protected function didConstruct() {
$this $this
->setArguments( ->setArguments(
array( array(

View file

@ -3,7 +3,7 @@
final class PhabricatorAuditManagementDeleteWorkflow final class PhabricatorAuditManagementDeleteWorkflow
extends PhabricatorAuditManagementWorkflow { extends PhabricatorAuditManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('delete') ->setName('delete')
->setExamples('**delete** [--dry-run] ...') ->setExamples('**delete** [--dry-run] ...')

View file

@ -3,7 +3,7 @@
final class CelerityManagementMapWorkflow final class CelerityManagementMapWorkflow
extends CelerityManagementWorkflow { extends CelerityManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('map') ->setName('map')
->setExamples('**map** [options]') ->setExamples('**map** [options]')

View file

@ -2,7 +2,7 @@
final class ConduitSSHWorkflow extends PhabricatorSSHWorkflow { final class ConduitSSHWorkflow extends PhabricatorSSHWorkflow {
public function didConstruct() { protected function didConstruct() {
$this->setName('conduit'); $this->setName('conduit');
$this->setArguments( $this->setArguments(
array( array(

View file

@ -7,7 +7,7 @@ final class PhabricatorDaemonManagementDebugWorkflow
return true; return true;
} }
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('debug') ->setName('debug')
->setExamples('**debug** __daemon__') ->setExamples('**debug** __daemon__')

View file

@ -7,7 +7,7 @@ final class PhabricatorDaemonManagementLaunchWorkflow
return true; return true;
} }
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('launch') ->setName('launch')
->setExamples('**launch** [n] __daemon__ [options]') ->setExamples('**launch** [n] __daemon__ [options]')

View file

@ -3,7 +3,7 @@
final class PhabricatorDaemonManagementListWorkflow final class PhabricatorDaemonManagementListWorkflow
extends PhabricatorDaemonManagementWorkflow { extends PhabricatorDaemonManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('list') ->setName('list')
->setSynopsis(pht('Show a list of available daemons.')) ->setSynopsis(pht('Show a list of available daemons.'))

View file

@ -3,7 +3,7 @@
final class PhabricatorDaemonManagementLogWorkflow final class PhabricatorDaemonManagementLogWorkflow
extends PhabricatorDaemonManagementWorkflow { extends PhabricatorDaemonManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('log') ->setName('log')
->setExamples('**log** [__options__]') ->setExamples('**log** [__options__]')

View file

@ -3,7 +3,7 @@
final class PhabricatorDaemonManagementRestartWorkflow final class PhabricatorDaemonManagementRestartWorkflow
extends PhabricatorDaemonManagementWorkflow { extends PhabricatorDaemonManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('restart') ->setName('restart')
->setSynopsis( ->setSynopsis(

View file

@ -3,7 +3,7 @@
final class PhabricatorDaemonManagementStartWorkflow final class PhabricatorDaemonManagementStartWorkflow
extends PhabricatorDaemonManagementWorkflow { extends PhabricatorDaemonManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('start') ->setName('start')
->setSynopsis( ->setSynopsis(

View file

@ -3,7 +3,7 @@
final class PhabricatorDaemonManagementStatusWorkflow final class PhabricatorDaemonManagementStatusWorkflow
extends PhabricatorDaemonManagementWorkflow { extends PhabricatorDaemonManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('status') ->setName('status')
->setSynopsis(pht('Show status of running daemons.')) ->setSynopsis(pht('Show status of running daemons.'))

View file

@ -3,7 +3,7 @@
final class PhabricatorDaemonManagementStopWorkflow final class PhabricatorDaemonManagementStopWorkflow
extends PhabricatorDaemonManagementWorkflow { extends PhabricatorDaemonManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('stop') ->setName('stop')
->setSynopsis( ->setSynopsis(

View file

@ -2,7 +2,7 @@
final class DiffusionGitReceivePackSSHWorkflow extends DiffusionGitSSHWorkflow { final class DiffusionGitReceivePackSSHWorkflow extends DiffusionGitSSHWorkflow {
public function didConstruct() { protected function didConstruct() {
$this->setName('git-receive-pack'); $this->setName('git-receive-pack');
$this->setArguments( $this->setArguments(
array( array(

View file

@ -2,7 +2,7 @@
final class DiffusionGitUploadPackSSHWorkflow extends DiffusionGitSSHWorkflow { final class DiffusionGitUploadPackSSHWorkflow extends DiffusionGitSSHWorkflow {
public function didConstruct() { protected function didConstruct() {
$this->setName('git-upload-pack'); $this->setName('git-upload-pack');
$this->setArguments( $this->setArguments(
array( array(

View file

@ -5,7 +5,7 @@ final class DiffusionMercurialServeSSHWorkflow
protected $didSeeWrite; protected $didSeeWrite;
public function didConstruct() { protected function didConstruct() {
$this->setName('hg'); $this->setName('hg');
$this->setArguments( $this->setArguments(
array( array(

View file

@ -21,7 +21,7 @@ final class DiffusionSubversionServeSSHWorkflow
private $internalBaseURI; private $internalBaseURI;
private $externalBaseURI; private $externalBaseURI;
public function didConstruct() { protected function didConstruct() {
$this->setName('svnserve'); $this->setName('svnserve');
$this->setArguments( $this->setArguments(
array( array(

View file

@ -2,7 +2,7 @@
final class DivinerAtomizeWorkflow extends DivinerWorkflow { final class DivinerAtomizeWorkflow extends DivinerWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('atomize') ->setName('atomize')
->setSynopsis(pht('Build atoms from source.')) ->setSynopsis(pht('Build atoms from source.'))

View file

@ -4,7 +4,7 @@ final class DivinerGenerateWorkflow extends DivinerWorkflow {
private $atomCache; private $atomCache;
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('generate') ->setName('generate')
->setSynopsis(pht('Generate documentation.')) ->setSynopsis(pht('Generate documentation.'))

View file

@ -3,7 +3,7 @@
final class DrydockManagementCloseWorkflow final class DrydockManagementCloseWorkflow
extends DrydockManagementWorkflow { extends DrydockManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('close') ->setName('close')
->setSynopsis('Close a resource.') ->setSynopsis('Close a resource.')

View file

@ -3,7 +3,7 @@
final class DrydockManagementCreateResourceWorkflow final class DrydockManagementCreateResourceWorkflow
extends DrydockManagementWorkflow { extends DrydockManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('create-resource') ->setName('create-resource')
->setSynopsis('Create a resource manually.') ->setSynopsis('Create a resource manually.')

View file

@ -3,7 +3,7 @@
final class DrydockManagementLeaseWorkflow final class DrydockManagementLeaseWorkflow
extends DrydockManagementWorkflow { extends DrydockManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('lease') ->setName('lease')
->setSynopsis('Lease a resource.') ->setSynopsis('Lease a resource.')

View file

@ -3,7 +3,7 @@
final class DrydockManagementReleaseWorkflow final class DrydockManagementReleaseWorkflow
extends DrydockManagementWorkflow { extends DrydockManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('release') ->setName('release')
->setSynopsis('Release a lease.') ->setSynopsis('Release a lease.')

View file

@ -3,7 +3,7 @@
final class PhabricatorFactManagementAnalyzeWorkflow final class PhabricatorFactManagementAnalyzeWorkflow
extends PhabricatorFactManagementWorkflow { extends PhabricatorFactManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('analyze') ->setName('analyze')
->setSynopsis(pht('Manually invoke fact analyzers.')) ->setSynopsis(pht('Manually invoke fact analyzers.'))

View file

@ -3,7 +3,7 @@
final class PhabricatorFactManagementCursorsWorkflow final class PhabricatorFactManagementCursorsWorkflow
extends PhabricatorFactManagementWorkflow { extends PhabricatorFactManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('cursors') ->setName('cursors')
->setSynopsis(pht('Show a list of fact iterators and cursors.')) ->setSynopsis(pht('Show a list of fact iterators and cursors.'))

View file

@ -3,7 +3,7 @@
final class PhabricatorFactManagementDestroyWorkflow final class PhabricatorFactManagementDestroyWorkflow
extends PhabricatorFactManagementWorkflow { extends PhabricatorFactManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('destroy') ->setName('destroy')
->setSynopsis(pht('Destroy all facts.')) ->setSynopsis(pht('Destroy all facts.'))

View file

@ -3,7 +3,7 @@
final class PhabricatorFactManagementListWorkflow final class PhabricatorFactManagementListWorkflow
extends PhabricatorFactManagementWorkflow { extends PhabricatorFactManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('list') ->setName('list')
->setSynopsis(pht('Show a list of fact engines.')) ->setSynopsis(pht('Show a list of fact engines.'))

View file

@ -3,7 +3,7 @@
final class PhabricatorFactManagementStatusWorkflow final class PhabricatorFactManagementStatusWorkflow
extends PhabricatorFactManagementWorkflow { extends PhabricatorFactManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('status') ->setName('status')
->setSynopsis(pht('Show status of fact data.')) ->setSynopsis(pht('Show status of fact data.'))

View file

@ -3,7 +3,7 @@
final class PhabricatorFilesManagementCompactWorkflow final class PhabricatorFilesManagementCompactWorkflow
extends PhabricatorFilesManagementWorkflow { extends PhabricatorFilesManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('compact') ->setName('compact')
->setSynopsis( ->setSynopsis(

View file

@ -3,7 +3,7 @@
final class PhabricatorFilesManagementEnginesWorkflow final class PhabricatorFilesManagementEnginesWorkflow
extends PhabricatorFilesManagementWorkflow { extends PhabricatorFilesManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('engines') ->setName('engines')
->setSynopsis('List available storage engines.') ->setSynopsis('List available storage engines.')

View file

@ -3,7 +3,7 @@
final class PhabricatorFilesManagementMigrateWorkflow final class PhabricatorFilesManagementMigrateWorkflow
extends PhabricatorFilesManagementWorkflow { extends PhabricatorFilesManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('migrate') ->setName('migrate')
->setSynopsis('Migrate files between storage engines.') ->setSynopsis('Migrate files between storage engines.')

View file

@ -3,7 +3,7 @@
final class PhabricatorFilesManagementPurgeWorkflow final class PhabricatorFilesManagementPurgeWorkflow
extends PhabricatorFilesManagementWorkflow { extends PhabricatorFilesManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('purge') ->setName('purge')
->setSynopsis('Delete files with missing data.') ->setSynopsis('Delete files with missing data.')

View file

@ -3,7 +3,7 @@
final class PhabricatorFilesManagementRebuildWorkflow final class PhabricatorFilesManagementRebuildWorkflow
extends PhabricatorFilesManagementWorkflow { extends PhabricatorFilesManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('rebuild') ->setName('rebuild')
->setSynopsis('Rebuild metadata of old files.') ->setSynopsis('Rebuild metadata of old files.')

View file

@ -3,7 +3,7 @@
final class HarbormasterManagementBuildWorkflow final class HarbormasterManagementBuildWorkflow
extends HarbormasterManagementWorkflow { extends HarbormasterManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('build') ->setName('build')
->setExamples('**build** [__options__] __buildable__ --plan __id__') ->setExamples('**build** [__options__] __buildable__ --plan __id__')

View file

@ -3,7 +3,7 @@
final class HarbormasterManagementUpdateWorkflow final class HarbormasterManagementUpdateWorkflow
extends HarbormasterManagementWorkflow { extends HarbormasterManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('update') ->setName('update')
->setExamples('**update** [__options__] __buildable__') ->setExamples('**update** [__options__] __buildable__')

View file

@ -3,7 +3,7 @@
final class PhabricatorRepositoryManagementCacheWorkflow final class PhabricatorRepositoryManagementCacheWorkflow
extends PhabricatorRepositoryManagementWorkflow { extends PhabricatorRepositoryManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('cache') ->setName('cache')
->setExamples( ->setExamples(

View file

@ -3,7 +3,7 @@
final class PhabricatorRepositoryManagementDiscoverWorkflow final class PhabricatorRepositoryManagementDiscoverWorkflow
extends PhabricatorRepositoryManagementWorkflow { extends PhabricatorRepositoryManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('discover') ->setName('discover')
->setExamples('**discover** [__options__] __repository__ ...') ->setExamples('**discover** [__options__] __repository__ ...')

View file

@ -3,7 +3,7 @@
final class PhabricatorRepositoryManagementEditWorkflow final class PhabricatorRepositoryManagementEditWorkflow
extends PhabricatorRepositoryManagementWorkflow { extends PhabricatorRepositoryManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('edit') ->setName('edit')
->setExamples('**edit** --as __username__ __repository__ ...') ->setExamples('**edit** --as __username__ __repository__ ...')

View file

@ -3,7 +3,7 @@
final class PhabricatorRepositoryManagementImportingWorkflow final class PhabricatorRepositoryManagementImportingWorkflow
extends PhabricatorRepositoryManagementWorkflow { extends PhabricatorRepositoryManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('importing') ->setName('importing')
->setExamples('**importing** __repository__ ...') ->setExamples('**importing** __repository__ ...')

View file

@ -3,7 +3,7 @@
final class PhabricatorRepositoryManagementListWorkflow final class PhabricatorRepositoryManagementListWorkflow
extends PhabricatorRepositoryManagementWorkflow { extends PhabricatorRepositoryManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('list') ->setName('list')
->setSynopsis('Show a list of repositories.') ->setSynopsis('Show a list of repositories.')

View file

@ -3,7 +3,7 @@
final class PhabricatorRepositoryManagementLookupUsersWorkflow final class PhabricatorRepositoryManagementLookupUsersWorkflow
extends PhabricatorRepositoryManagementWorkflow { extends PhabricatorRepositoryManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('lookup-users') ->setName('lookup-users')
->setExamples('**lookup-users** __commit__ ...') ->setExamples('**lookup-users** __commit__ ...')

View file

@ -3,7 +3,7 @@
final class PhabricatorRepositoryManagementMarkImportedWorkflow final class PhabricatorRepositoryManagementMarkImportedWorkflow
extends PhabricatorRepositoryManagementWorkflow { extends PhabricatorRepositoryManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('mark-imported') ->setName('mark-imported')
->setExamples('**mark-imported** __repository__ ...') ->setExamples('**mark-imported** __repository__ ...')

View file

@ -3,7 +3,7 @@
final class PhabricatorRepositoryManagementMirrorWorkflow final class PhabricatorRepositoryManagementMirrorWorkflow
extends PhabricatorRepositoryManagementWorkflow { extends PhabricatorRepositoryManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('mirror') ->setName('mirror')
->setExamples('**mirror** [__options__] __repository__ ...') ->setExamples('**mirror** [__options__] __repository__ ...')

View file

@ -3,7 +3,7 @@
final class PhabricatorRepositoryManagementParentsWorkflow final class PhabricatorRepositoryManagementParentsWorkflow
extends PhabricatorRepositoryManagementWorkflow { extends PhabricatorRepositoryManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('parents') ->setName('parents')
->setExamples('**parents** [options] [__repository__] ...') ->setExamples('**parents** [options] [__repository__] ...')

View file

@ -3,7 +3,7 @@
final class PhabricatorRepositoryManagementPullWorkflow final class PhabricatorRepositoryManagementPullWorkflow
extends PhabricatorRepositoryManagementWorkflow { extends PhabricatorRepositoryManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('pull') ->setName('pull')
->setExamples('**pull** __repository__ ...') ->setExamples('**pull** __repository__ ...')

View file

@ -3,7 +3,7 @@
final class PhabricatorRepositoryManagementRefsWorkflow final class PhabricatorRepositoryManagementRefsWorkflow
extends PhabricatorRepositoryManagementWorkflow { extends PhabricatorRepositoryManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('refs') ->setName('refs')
->setExamples('**refs** [__options__] __repository__ ...') ->setExamples('**refs** [__options__] __repository__ ...')

View file

@ -3,7 +3,7 @@
final class PhabricatorRepositoryManagementReparseWorkflow final class PhabricatorRepositoryManagementReparseWorkflow
extends PhabricatorRepositoryManagementWorkflow { extends PhabricatorRepositoryManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('reparse') ->setName('reparse')
->setExamples('**reparse** [options] __repository__') ->setExamples('**reparse** [options] __repository__')

View file

@ -14,7 +14,7 @@ final class PhabricatorRepositoryManagementUpdateWorkflow
return $this->verbose; return $this->verbose;
} }
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('update') ->setName('update')
->setExamples('**update** [options] __repository__') ->setExamples('**update** [options] __repository__')

View file

@ -3,7 +3,7 @@
final class PhabricatorSystemRemoveDestroyWorkflow final class PhabricatorSystemRemoveDestroyWorkflow
extends PhabricatorSystemRemoveWorkflow { extends PhabricatorSystemRemoveWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('destroy') ->setName('destroy')
->setSynopsis(pht('Permanently destroy objects.')) ->setSynopsis(pht('Permanently destroy objects.'))

View file

@ -3,7 +3,7 @@
final class PhabricatorSystemRemoveLogWorkflow final class PhabricatorSystemRemoveLogWorkflow
extends PhabricatorSystemRemoveWorkflow { extends PhabricatorSystemRemoveWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('log') ->setName('log')
->setSynopsis(pht('Show a log of permanently destroyed objects.')) ->setSynopsis(pht('Show a log of permanently destroyed objects.'))

View file

@ -3,7 +3,7 @@
final class PhabricatorWorkerManagementCancelWorkflow final class PhabricatorWorkerManagementCancelWorkflow
extends PhabricatorWorkerManagementWorkflow { extends PhabricatorWorkerManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('cancel') ->setName('cancel')
->setExamples('**cancel** --id __id__') ->setExamples('**cancel** --id __id__')

View file

@ -3,7 +3,7 @@
final class PhabricatorWorkerManagementFloodWorkflow final class PhabricatorWorkerManagementFloodWorkflow
extends PhabricatorWorkerManagementWorkflow { extends PhabricatorWorkerManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('flood') ->setName('flood')
->setExamples('**flood**') ->setExamples('**flood**')

View file

@ -3,7 +3,7 @@
final class PhabricatorWorkerManagementFreeWorkflow final class PhabricatorWorkerManagementFreeWorkflow
extends PhabricatorWorkerManagementWorkflow { extends PhabricatorWorkerManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('free') ->setName('free')
->setExamples('**free** --id __id__') ->setExamples('**free** --id __id__')

View file

@ -3,7 +3,7 @@
final class PhabricatorWorkerManagementRetryWorkflow final class PhabricatorWorkerManagementRetryWorkflow
extends PhabricatorWorkerManagementWorkflow { extends PhabricatorWorkerManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('retry') ->setName('retry')
->setExamples('**retry** --id __id__') ->setExamples('**retry** --id __id__')

View file

@ -3,7 +3,7 @@
final class PhabricatorInternationalizationManagementExtractWorkflow final class PhabricatorInternationalizationManagementExtractWorkflow
extends PhabricatorInternationalizationManagementWorkflow { extends PhabricatorInternationalizationManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('extract') ->setName('extract')
->setSynopsis(pht('Extract translatable strings.')) ->setSynopsis(pht('Extract translatable strings.'))

View file

@ -3,7 +3,7 @@
final class PhabricatorStorageManagementAdjustWorkflow final class PhabricatorStorageManagementAdjustWorkflow
extends PhabricatorStorageManagementWorkflow { extends PhabricatorStorageManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('adjust') ->setName('adjust')
->setExamples('**adjust** [__options__]') ->setExamples('**adjust** [__options__]')

View file

@ -3,7 +3,7 @@
final class PhabricatorStorageManagementDatabasesWorkflow final class PhabricatorStorageManagementDatabasesWorkflow
extends PhabricatorStorageManagementWorkflow { extends PhabricatorStorageManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('databases') ->setName('databases')
->setExamples('**databases** [__options__]') ->setExamples('**databases** [__options__]')

View file

@ -3,7 +3,7 @@
final class PhabricatorStorageManagementDestroyWorkflow final class PhabricatorStorageManagementDestroyWorkflow
extends PhabricatorStorageManagementWorkflow { extends PhabricatorStorageManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('destroy') ->setName('destroy')
->setExamples('**destroy** [__options__]') ->setExamples('**destroy** [__options__]')

View file

@ -3,7 +3,7 @@
final class PhabricatorStorageManagementDumpWorkflow final class PhabricatorStorageManagementDumpWorkflow
extends PhabricatorStorageManagementWorkflow { extends PhabricatorStorageManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('dump') ->setName('dump')
->setExamples('**dump** [__options__]') ->setExamples('**dump** [__options__]')

View file

@ -3,7 +3,7 @@
final class PhabricatorStorageManagementProbeWorkflow final class PhabricatorStorageManagementProbeWorkflow
extends PhabricatorStorageManagementWorkflow { extends PhabricatorStorageManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('probe') ->setName('probe')
->setExamples('**probe**') ->setExamples('**probe**')

View file

@ -3,7 +3,7 @@
final class PhabricatorStorageManagementQuickstartWorkflow final class PhabricatorStorageManagementQuickstartWorkflow
extends PhabricatorStorageManagementWorkflow { extends PhabricatorStorageManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('quickstart') ->setName('quickstart')
->setExamples('**quickstart** [__options__]') ->setExamples('**quickstart** [__options__]')

View file

@ -3,7 +3,7 @@
final class PhabricatorStorageManagementStatusWorkflow final class PhabricatorStorageManagementStatusWorkflow
extends PhabricatorStorageManagementWorkflow { extends PhabricatorStorageManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('status') ->setName('status')
->setExamples('**status** [__options__]') ->setExamples('**status** [__options__]')

View file

@ -3,7 +3,7 @@
final class PhabricatorStorageManagementUpgradeWorkflow final class PhabricatorStorageManagementUpgradeWorkflow
extends PhabricatorStorageManagementWorkflow { extends PhabricatorStorageManagementWorkflow {
public function didConstruct() { protected function didConstruct() {
$this $this
->setName('upgrade') ->setName('upgrade')
->setExamples('**upgrade** [__options__]') ->setExamples('**upgrade** [__options__]')