Skip to content

Commit

Permalink
Fix visiblity of LiskDAO::getConfiguration()
Browse files Browse the repository at this point in the history
Summary: Ref T6822.

Test Plan: `grep`

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: hach-que, Korvin, epriestley

Maniphest Tasks: T6822

Differential Revision: https://secure.phabricator.com/D11370
  • Loading branch information
joshuaspence committed Jan 13, 2015
1 parent 8cfc37f commit d6b882a
Show file tree
Hide file tree
Showing 181 changed files with 181 additions and 181 deletions.
2 changes: 1 addition & 1 deletion src/applications/almanac/storage/AlmanacBinding.php
Expand Up @@ -25,7 +25,7 @@ public static function initializeNewBinding(AlmanacService $service) {
->attachAlmanacProperties(array());
}

public function getConfiguration() {
protected function getConfiguration() {
return array(
self::CONFIG_AUX_PHID => true,
self::CONFIG_COLUMN_SCHEMA => array(
Expand Down
2 changes: 1 addition & 1 deletion src/applications/almanac/storage/AlmanacDevice.php
Expand Up @@ -29,7 +29,7 @@ public static function initializeNewDevice() {
->setIsLocked(0);
}

public function getConfiguration() {
protected function getConfiguration() {
return array(
self::CONFIG_AUX_PHID => true,
self::CONFIG_COLUMN_SCHEMA => array(
Expand Down
2 changes: 1 addition & 1 deletion src/applications/almanac/storage/AlmanacInterface.php
Expand Up @@ -18,7 +18,7 @@ public static function initializeNewInterface() {
return id(new AlmanacInterface());
}

public function getConfiguration() {
protected function getConfiguration() {
return array(
self::CONFIG_AUX_PHID => true,
self::CONFIG_COLUMN_SCHEMA => array(
Expand Down
2 changes: 1 addition & 1 deletion src/applications/almanac/storage/AlmanacNetwork.php
Expand Up @@ -18,7 +18,7 @@ public static function initializeNewNetwork() {
->setEditPolicy(PhabricatorPolicies::POLICY_ADMIN);
}

public function getConfiguration() {
protected function getConfiguration() {
return array(
self::CONFIG_AUX_PHID => true,
self::CONFIG_COLUMN_SCHEMA => array(
Expand Down
2 changes: 1 addition & 1 deletion src/applications/almanac/storage/AlmanacProperty.php
Expand Up @@ -12,7 +12,7 @@ public function getApplicationName() {
return 'almanac';
}

public function getConfiguration() {
protected function getConfiguration() {
$config = parent::getConfiguration();

$config[self::CONFIG_COLUMN_SCHEMA] += array(
Expand Down
2 changes: 1 addition & 1 deletion src/applications/almanac/storage/AlmanacService.php
Expand Up @@ -31,7 +31,7 @@ public static function initializeNewService() {
->setIsLocked(0);
}

public function getConfiguration() {
protected function getConfiguration() {
return array(
self::CONFIG_AUX_PHID => true,
self::CONFIG_COLUMN_SCHEMA => array(
Expand Down
Expand Up @@ -22,7 +22,7 @@ public function shouldUseMarkupCache($field) {
return ($this->getTransactionPHID() != null);
}

public function getConfiguration() {
protected function getConfiguration() {
$config = parent::getConfiguration();

$config[self::CONFIG_COLUMN_SCHEMA] = array(
Expand Down
Expand Up @@ -8,7 +8,7 @@ final class PhabricatorAuthFactorConfig extends PhabricatorAuthDAO {
protected $factorSecret;
protected $properties = array();

public function getConfiguration() {
protected function getConfiguration() {
return array(
self::CONFIG_SERIALIZATION => array(
'properties' => self::SERIALIZATION_JSON,
Expand Down
Expand Up @@ -26,7 +26,7 @@ public function generatePHID() {
PhabricatorAuthAuthProviderPHIDType::TYPECONST);
}

public function getConfiguration() {
protected function getConfiguration() {
return array(
self::CONFIG_AUX_PHID => true,
self::CONFIG_SERIALIZATION => array(
Expand Down
2 changes: 1 addition & 1 deletion src/applications/auth/storage/PhabricatorAuthSSHKey.php
Expand Up @@ -14,7 +14,7 @@ final class PhabricatorAuthSSHKey

private $object = self::ATTACHABLE;

public function getConfiguration() {
protected function getConfiguration() {
return array(
self::CONFIG_COLUMN_SCHEMA => array(
'name' => 'text255',
Expand Down
2 changes: 1 addition & 1 deletion src/applications/auth/storage/PhabricatorAuthSession.php
Expand Up @@ -16,7 +16,7 @@ final class PhabricatorAuthSession extends PhabricatorAuthDAO

private $identityObject = self::ATTACHABLE;

public function getConfiguration() {
protected function getConfiguration() {
return array(
self::CONFIG_TIMESTAMPS => false,
self::CONFIG_COLUMN_SCHEMA => array(
Expand Down
Expand Up @@ -11,7 +11,7 @@ final class PhabricatorAuthTemporaryToken extends PhabricatorAuthDAO
protected $tokenExpires;
protected $tokenCode;

public function getConfiguration() {
protected function getConfiguration() {
return array(
self::CONFIG_TIMESTAMPS => false,
self::CONFIG_COLUMN_SCHEMA => array(
Expand Down
2 changes: 1 addition & 1 deletion src/applications/cache/storage/PhabricatorMarkupCache.php
Expand Up @@ -6,7 +6,7 @@ final class PhabricatorMarkupCache extends PhabricatorCacheDAO {
protected $cacheData;
protected $metadata;

public function getConfiguration() {
protected function getConfiguration() {
return array(
self::CONFIG_SERIALIZATION => array(
'cacheData' => self::SERIALIZATION_PHP,
Expand Down
Expand Up @@ -34,7 +34,7 @@ public function getHumanStatus() {
return $options[$this->status];
}

public function getConfiguration() {
protected function getConfiguration() {
return array(
self::CONFIG_AUX_PHID => true,
self::CONFIG_COLUMN_SCHEMA => array(
Expand Down
Expand Up @@ -5,7 +5,7 @@ final class PhabricatorCalendarHoliday extends PhabricatorCalendarDAO {
protected $day;
protected $name;

public function getConfiguration() {
protected function getConfiguration() {
return array(
self::CONFIG_TIMESTAMPS => false,
self::CONFIG_COLUMN_SCHEMA => array(
Expand Down
Expand Up @@ -10,7 +10,7 @@ final class PhabricatorChatLogChannel
protected $viewPolicy;
protected $editPolicy;

public function getConfiguration() {
protected function getConfiguration() {
return array(
self::CONFIG_COLUMN_SCHEMA => array(
'serviceName' => 'text64',
Expand Down
Expand Up @@ -13,7 +13,7 @@ final class PhabricatorChatLogEvent

private $channel = self::ATTACHABLE;

public function getConfiguration() {
protected function getConfiguration() {
return array(
self::CONFIG_TIMESTAMPS => false,
self::CONFIG_COLUMN_SCHEMA => array(
Expand Down
Expand Up @@ -5,7 +5,7 @@ final class PhabricatorConduitCertificateToken extends PhabricatorConduitDAO {
protected $userPHID;
protected $token;

public function getConfiguration() {
protected function getConfiguration() {
return array(
self::CONFIG_COLUMN_SCHEMA => array(
'token' => 'text64?',
Expand Down
Expand Up @@ -7,7 +7,7 @@ final class PhabricatorConduitConnectionLog extends PhabricatorConduitDAO {
protected $clientDescription;
protected $username;

public function getConfiguration() {
protected function getConfiguration() {
return array(
self::CONFIG_COLUMN_SCHEMA => array(
'client' => 'text255?',
Expand Down
Expand Up @@ -10,7 +10,7 @@ final class PhabricatorConduitMethodCallLog
protected $error;
protected $duration;

public function getConfiguration() {
protected function getConfiguration() {
return array(
self::CONFIG_COLUMN_SCHEMA => array(
'id' => 'auto64',
Expand Down
Expand Up @@ -15,7 +15,7 @@ final class PhabricatorConduitToken
const TYPE_COMMANDLINE = 'cli';
const TYPE_CLUSTER = 'clr';

public function getConfiguration() {
protected function getConfiguration() {
return array(
self::CONFIG_COLUMN_SCHEMA => array(
'tokenType' => 'text32',
Expand Down
2 changes: 1 addition & 1 deletion src/applications/config/storage/PhabricatorConfigEntry.php
Expand Up @@ -11,7 +11,7 @@ final class PhabricatorConfigEntry
protected $value;
protected $isDeleted;

public function getConfiguration() {
protected function getConfiguration() {
return array(
self::CONFIG_AUX_PHID => true,
self::CONFIG_SERIALIZATION => array(
Expand Down
2 changes: 1 addition & 1 deletion src/applications/conpherence/storage/ConpherenceIndex.php
Expand Up @@ -8,7 +8,7 @@ final class ConpherenceIndex
protected $previousTransactionPHID;
protected $corpus;

public function getConfiguration() {
protected function getConfiguration() {
return array(
self::CONFIG_TIMESTAMPS => false,
self::CONFIG_COLUMN_SCHEMA => array(
Expand Down
Expand Up @@ -10,7 +10,7 @@ final class ConpherenceParticipant extends ConpherenceDAO {
protected $dateTouched;
protected $settings = array();

public function getConfiguration() {
protected function getConfiguration() {
return array(
self::CONFIG_SERIALIZATION => array(
'settings' => self::SERIALIZATION_JSON,
Expand Down
2 changes: 1 addition & 1 deletion src/applications/conpherence/storage/ConpherenceThread.php
Expand Up @@ -21,7 +21,7 @@ public static function initializeNewThread(PhabricatorUser $sender) {
->setTitle('');
}

public function getConfiguration() {
protected function getConfiguration() {
return array(
self::CONFIG_AUX_PHID => true,
self::CONFIG_SERIALIZATION => array(
Expand Down
Expand Up @@ -9,7 +9,7 @@ public function getApplicationTransactionObject() {
return new ConpherenceTransaction();
}

public function getConfiguration() {
protected function getConfiguration() {
$config = parent::getConfiguration();

$config[self::CONFIG_COLUMN_SCHEMA] = array(
Expand Down
Expand Up @@ -24,7 +24,7 @@ public static function initializeNewCountdown(PhabricatorUser $actor) {
->setEpoch(PhabricatorTime::getNow());
}

public function getConfiguration() {
protected function getConfiguration() {
return array(
self::CONFIG_AUX_PHID => true,
self::CONFIG_COLUMN_SCHEMA => array(
Expand Down
2 changes: 1 addition & 1 deletion src/applications/daemon/storage/PhabricatorDaemonLog.php
Expand Up @@ -19,7 +19,7 @@ final class PhabricatorDaemonLog extends PhabricatorDaemonDAO
protected $envHash;
protected $status;

public function getConfiguration() {
protected function getConfiguration() {
return array(
self::CONFIG_SERIALIZATION => array(
'argv' => self::SERIALIZATION_JSON,
Expand Down
Expand Up @@ -7,7 +7,7 @@ final class PhabricatorDaemonLogEvent extends PhabricatorDaemonDAO {
protected $message;
protected $epoch;

public function getConfiguration() {
protected function getConfiguration() {
return array(
self::CONFIG_TIMESTAMPS => false,
self::CONFIG_COLUMN_SCHEMA => array(
Expand Down
Expand Up @@ -36,7 +36,7 @@ public static function copyDashboard(
return $dst;
}

public function getConfiguration() {
protected function getConfiguration() {
return array(
self::CONFIG_AUX_PHID => true,
self::CONFIG_SERIALIZATION => array(
Expand Down
Expand Up @@ -14,7 +14,7 @@ final class PhabricatorDashboardInstall
protected $applicationClass;
protected $dashboardPHID;

public function getConfiguration() {
protected function getConfiguration() {
return array(
self::CONFIG_COLUMN_SCHEMA => array(
'applicationClass' => 'text64',
Expand Down
Expand Up @@ -38,7 +38,7 @@ public static function copyPanel(
return $dst;
}

public function getConfiguration() {
protected function getConfiguration() {
return array(
self::CONFIG_AUX_PHID => true,
self::CONFIG_SERIALIZATION => array(
Expand Down
Expand Up @@ -11,7 +11,7 @@ final class DifferentialAffectedPath extends DifferentialDAO {
protected $epoch;
protected $revisionID;

public function getConfiguration() {
protected function getConfiguration() {
return array(
self::CONFIG_TIMESTAMPS => false,
self::CONFIG_COLUMN_SCHEMA => array(
Expand Down
2 changes: 1 addition & 1 deletion src/applications/differential/storage/DifferentialDiff.php
Expand Up @@ -41,7 +41,7 @@ final class DifferentialDiff
private $revision = self::ATTACHABLE;
private $properties = array();

public function getConfiguration() {
protected function getConfiguration() {
return array(
self::CONFIG_AUX_PHID => true,
self::CONFIG_COLUMN_SCHEMA => array(
Expand Down
Expand Up @@ -6,7 +6,7 @@ final class DifferentialDraft extends DifferentialDAO {
protected $authorPHID;
protected $draftKey;

public function getConfiguration() {
protected function getConfiguration() {
return array(
self::CONFIG_COLUMN_SCHEMA => array(
'draftKey' => 'text64',
Expand Down
Expand Up @@ -4,7 +4,7 @@ final class DifferentialHunkLegacy extends DifferentialHunk {

protected $changes;

public function getConfiguration() {
protected function getConfiguration() {
return array(
self::CONFIG_COLUMN_SCHEMA => array(
'changes' => 'text?',
Expand Down
Expand Up @@ -20,7 +20,7 @@ public function getTableName() {
return 'differential_hunk_modern';
}

public function getConfiguration() {
protected function getConfiguration() {
return array(
self::CONFIG_BINARY => array(
'data' => true,
Expand Down
Expand Up @@ -67,7 +67,7 @@ public static function initializeNewRevision(PhabricatorUser $actor) {
->setStatus(ArcanistDifferentialRevisionStatus::NEEDS_REVIEW);
}

public function getConfiguration() {
protected function getConfiguration() {
return array(
self::CONFIG_AUX_PHID => true,
self::CONFIG_SERIALIZATION => array(
Expand Down
Expand Up @@ -16,7 +16,7 @@ public function getApplicationTransactionObject() {
return new DifferentialTransaction();
}

public function getConfiguration() {
protected function getConfiguration() {
$config = parent::getConfiguration();
$config[self::CONFIG_COLUMN_SCHEMA] = array(
'revisionPHID' => 'phid?',
Expand Down
2 changes: 1 addition & 1 deletion src/applications/diviner/storage/DivinerLiveAtom.php
Expand Up @@ -6,7 +6,7 @@ final class DivinerLiveAtom extends DivinerDAO {
protected $content;
protected $atomData;

public function getConfiguration() {
protected function getConfiguration() {
return array(
self::CONFIG_TIMESTAMPS => false,
self::CONFIG_SERIALIZATION => array(
Expand Down
2 changes: 1 addition & 1 deletion src/applications/diviner/storage/DivinerLiveBook.php
Expand Up @@ -7,7 +7,7 @@ final class DivinerLiveBook extends DivinerDAO
protected $viewPolicy;
protected $configurationData = array();

public function getConfiguration() {
protected function getConfiguration() {
return array(
self::CONFIG_AUX_PHID => true,
self::CONFIG_SERIALIZATION => array(
Expand Down
2 changes: 1 addition & 1 deletion src/applications/diviner/storage/DivinerLiveSymbol.php
Expand Up @@ -23,7 +23,7 @@ final class DivinerLiveSymbol extends DivinerDAO
private $extends = self::ATTACHABLE;
private $children = self::ATTACHABLE;

public function getConfiguration() {
protected function getConfiguration() {
return array(
self::CONFIG_AUX_PHID => true,
self::CONFIG_TIMESTAMPS => false,
Expand Down
Expand Up @@ -13,7 +13,7 @@ final class DoorkeeperExternalObject extends DoorkeeperDAO
protected $properties = array();
protected $viewPolicy;

public function getConfiguration() {
protected function getConfiguration() {
return array(
self::CONFIG_AUX_PHID => true,
self::CONFIG_SERIALIZATION => array(
Expand Down
2 changes: 1 addition & 1 deletion src/applications/draft/storage/PhabricatorDraft.php
Expand Up @@ -9,7 +9,7 @@ final class PhabricatorDraft extends PhabricatorDraftDAO {

private $deleted = false;

public function getConfiguration() {
protected function getConfiguration() {
return array(
self::CONFIG_SERIALIZATION => array(
'metadata' => self::SERIALIZATION_JSON,
Expand Down

0 comments on commit d6b882a

Please sign in to comment.