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 PhabricatorFilesManagementCompactWorkflow
extends PhabricatorFilesManagementWorkflow {
public function didConstruct() {
protected function didConstruct() {
$this
->setName('compact')
->setSynopsis(

View File

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

View File

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

View File

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

View File

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