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:
parent
44093da93c
commit
2c855a8993
5 changed files with 5 additions and 5 deletions
|
@ -121,7 +121,7 @@ final class PhabricatorConfigColumnSchema
|
|||
return 0;
|
||||
}
|
||||
|
||||
public function compareToSimilarSchema(
|
||||
protected function compareToSimilarSchema(
|
||||
PhabricatorConfigStorageSchema $expect) {
|
||||
|
||||
$issues = array();
|
||||
|
|
|
@ -29,7 +29,7 @@ final class PhabricatorConfigDatabaseSchema
|
|||
return $this->getTables();
|
||||
}
|
||||
|
||||
public function compareToSimilarSchema(
|
||||
protected function compareToSimilarSchema(
|
||||
PhabricatorConfigStorageSchema $expect) {
|
||||
|
||||
$issues = array();
|
||||
|
|
|
@ -83,7 +83,7 @@ final class PhabricatorConfigKeySchema
|
|||
return $size;
|
||||
}
|
||||
|
||||
public function compareToSimilarSchema(
|
||||
protected function compareToSimilarSchema(
|
||||
PhabricatorConfigStorageSchema $expect) {
|
||||
|
||||
$issues = array();
|
||||
|
|
|
@ -27,7 +27,7 @@ final class PhabricatorConfigServerSchema
|
|||
return $this->getDatabases();
|
||||
}
|
||||
|
||||
public function compareToSimilarSchema(
|
||||
protected function compareToSimilarSchema(
|
||||
PhabricatorConfigStorageSchema $expect) {
|
||||
return array();
|
||||
}
|
||||
|
|
|
@ -62,7 +62,7 @@ final class PhabricatorConfigTableSchema
|
|||
return $this->collation;
|
||||
}
|
||||
|
||||
public function compareToSimilarSchema(
|
||||
protected function compareToSimilarSchema(
|
||||
PhabricatorConfigStorageSchema $expect) {
|
||||
|
||||
$issues = array();
|
||||
|
|
Loading…
Reference in a new issue