@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

+5 -5
+1 -1
src/applications/config/schema/PhabricatorConfigColumnSchema.php
··· 121 121 return 0; 122 122 } 123 123 124 - public function compareToSimilarSchema( 124 + protected function compareToSimilarSchema( 125 125 PhabricatorConfigStorageSchema $expect) { 126 126 127 127 $issues = array();
+1 -1
src/applications/config/schema/PhabricatorConfigDatabaseSchema.php
··· 29 29 return $this->getTables(); 30 30 } 31 31 32 - public function compareToSimilarSchema( 32 + protected function compareToSimilarSchema( 33 33 PhabricatorConfigStorageSchema $expect) { 34 34 35 35 $issues = array();
+1 -1
src/applications/config/schema/PhabricatorConfigKeySchema.php
··· 83 83 return $size; 84 84 } 85 85 86 - public function compareToSimilarSchema( 86 + protected function compareToSimilarSchema( 87 87 PhabricatorConfigStorageSchema $expect) { 88 88 89 89 $issues = array();
+1 -1
src/applications/config/schema/PhabricatorConfigServerSchema.php
··· 27 27 return $this->getDatabases(); 28 28 } 29 29 30 - public function compareToSimilarSchema( 30 + protected function compareToSimilarSchema( 31 31 PhabricatorConfigStorageSchema $expect) { 32 32 return array(); 33 33 }
+1 -1
src/applications/config/schema/PhabricatorConfigTableSchema.php
··· 62 62 return $this->collation; 63 63 } 64 64 65 - public function compareToSimilarSchema( 65 + protected function compareToSimilarSchema( 66 66 PhabricatorConfigStorageSchema $expect) { 67 67 68 68 $issues = array();