1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-20 13:52:40 +01:00

Fix method visibility for PhabricatorConfigStorageSchema methods

Summary: Ref T6822.

Test Plan: Visual inspection. These methods are only called from within the `PhabricatorConfigStorageSchema` class.

Reviewers: #blessed_reviewers, epriestley

Reviewed By: #blessed_reviewers, epriestley

Subscribers: Korvin, epriestley

Maniphest Tasks: T6822

Differential Revision: https://secure.phabricator.com/D11247
This commit is contained in:
Joshua Spence 2015-01-07 07:33:52 +11:00
parent 44093da93c
commit 2c855a8993
5 changed files with 5 additions and 5 deletions

View file

@ -121,7 +121,7 @@ final class PhabricatorConfigColumnSchema
return 0; return 0;
} }
public function compareToSimilarSchema( protected function compareToSimilarSchema(
PhabricatorConfigStorageSchema $expect) { PhabricatorConfigStorageSchema $expect) {
$issues = array(); $issues = array();

View file

@ -29,7 +29,7 @@ final class PhabricatorConfigDatabaseSchema
return $this->getTables(); return $this->getTables();
} }
public function compareToSimilarSchema( protected function compareToSimilarSchema(
PhabricatorConfigStorageSchema $expect) { PhabricatorConfigStorageSchema $expect) {
$issues = array(); $issues = array();

View file

@ -83,7 +83,7 @@ final class PhabricatorConfigKeySchema
return $size; return $size;
} }
public function compareToSimilarSchema( protected function compareToSimilarSchema(
PhabricatorConfigStorageSchema $expect) { PhabricatorConfigStorageSchema $expect) {
$issues = array(); $issues = array();

View file

@ -27,7 +27,7 @@ final class PhabricatorConfigServerSchema
return $this->getDatabases(); return $this->getDatabases();
} }
public function compareToSimilarSchema( protected function compareToSimilarSchema(
PhabricatorConfigStorageSchema $expect) { PhabricatorConfigStorageSchema $expect) {
return array(); return array();
} }

View file

@ -62,7 +62,7 @@ final class PhabricatorConfigTableSchema
return $this->collation; return $this->collation;
} }
public function compareToSimilarSchema( protected function compareToSimilarSchema(
PhabricatorConfigStorageSchema $expect) { PhabricatorConfigStorageSchema $expect) {
$issues = array(); $issues = array();