@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

Fix visiblity of `LiskDAO::getConfiguration()`

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

+181 -181
+1 -1
src/applications/almanac/storage/AlmanacBinding.php
··· 25 25 ->attachAlmanacProperties(array()); 26 26 } 27 27 28 - public function getConfiguration() { 28 + protected function getConfiguration() { 29 29 return array( 30 30 self::CONFIG_AUX_PHID => true, 31 31 self::CONFIG_COLUMN_SCHEMA => array(
+1 -1
src/applications/almanac/storage/AlmanacDevice.php
··· 29 29 ->setIsLocked(0); 30 30 } 31 31 32 - public function getConfiguration() { 32 + protected function getConfiguration() { 33 33 return array( 34 34 self::CONFIG_AUX_PHID => true, 35 35 self::CONFIG_COLUMN_SCHEMA => array(
+1 -1
src/applications/almanac/storage/AlmanacInterface.php
··· 18 18 return id(new AlmanacInterface()); 19 19 } 20 20 21 - public function getConfiguration() { 21 + protected function getConfiguration() { 22 22 return array( 23 23 self::CONFIG_AUX_PHID => true, 24 24 self::CONFIG_COLUMN_SCHEMA => array(
+1 -1
src/applications/almanac/storage/AlmanacNetwork.php
··· 18 18 ->setEditPolicy(PhabricatorPolicies::POLICY_ADMIN); 19 19 } 20 20 21 - public function getConfiguration() { 21 + protected function getConfiguration() { 22 22 return array( 23 23 self::CONFIG_AUX_PHID => true, 24 24 self::CONFIG_COLUMN_SCHEMA => array(
+1 -1
src/applications/almanac/storage/AlmanacProperty.php
··· 12 12 return 'almanac'; 13 13 } 14 14 15 - public function getConfiguration() { 15 + protected function getConfiguration() { 16 16 $config = parent::getConfiguration(); 17 17 18 18 $config[self::CONFIG_COLUMN_SCHEMA] += array(
+1 -1
src/applications/almanac/storage/AlmanacService.php
··· 31 31 ->setIsLocked(0); 32 32 } 33 33 34 - public function getConfiguration() { 34 + protected function getConfiguration() { 35 35 return array( 36 36 self::CONFIG_AUX_PHID => true, 37 37 self::CONFIG_COLUMN_SCHEMA => array(
+1 -1
src/applications/audit/storage/PhabricatorAuditTransactionComment.php
··· 22 22 return ($this->getTransactionPHID() != null); 23 23 } 24 24 25 - public function getConfiguration() { 25 + protected function getConfiguration() { 26 26 $config = parent::getConfiguration(); 27 27 28 28 $config[self::CONFIG_COLUMN_SCHEMA] = array(
+1 -1
src/applications/auth/storage/PhabricatorAuthFactorConfig.php
··· 8 8 protected $factorSecret; 9 9 protected $properties = array(); 10 10 11 - public function getConfiguration() { 11 + protected function getConfiguration() { 12 12 return array( 13 13 self::CONFIG_SERIALIZATION => array( 14 14 'properties' => self::SERIALIZATION_JSON,
+1 -1
src/applications/auth/storage/PhabricatorAuthProviderConfig.php
··· 26 26 PhabricatorAuthAuthProviderPHIDType::TYPECONST); 27 27 } 28 28 29 - public function getConfiguration() { 29 + protected function getConfiguration() { 30 30 return array( 31 31 self::CONFIG_AUX_PHID => true, 32 32 self::CONFIG_SERIALIZATION => array(
+1 -1
src/applications/auth/storage/PhabricatorAuthSSHKey.php
··· 14 14 15 15 private $object = self::ATTACHABLE; 16 16 17 - public function getConfiguration() { 17 + protected function getConfiguration() { 18 18 return array( 19 19 self::CONFIG_COLUMN_SCHEMA => array( 20 20 'name' => 'text255',
+1 -1
src/applications/auth/storage/PhabricatorAuthSession.php
··· 16 16 17 17 private $identityObject = self::ATTACHABLE; 18 18 19 - public function getConfiguration() { 19 + protected function getConfiguration() { 20 20 return array( 21 21 self::CONFIG_TIMESTAMPS => false, 22 22 self::CONFIG_COLUMN_SCHEMA => array(
+1 -1
src/applications/auth/storage/PhabricatorAuthTemporaryToken.php
··· 11 11 protected $tokenExpires; 12 12 protected $tokenCode; 13 13 14 - public function getConfiguration() { 14 + protected function getConfiguration() { 15 15 return array( 16 16 self::CONFIG_TIMESTAMPS => false, 17 17 self::CONFIG_COLUMN_SCHEMA => array(
+1 -1
src/applications/cache/storage/PhabricatorMarkupCache.php
··· 6 6 protected $cacheData; 7 7 protected $metadata; 8 8 9 - public function getConfiguration() { 9 + protected function getConfiguration() { 10 10 return array( 11 11 self::CONFIG_SERIALIZATION => array( 12 12 'cacheData' => self::SERIALIZATION_PHP,
+1 -1
src/applications/calendar/storage/PhabricatorCalendarEvent.php
··· 34 34 return $options[$this->status]; 35 35 } 36 36 37 - public function getConfiguration() { 37 + protected function getConfiguration() { 38 38 return array( 39 39 self::CONFIG_AUX_PHID => true, 40 40 self::CONFIG_COLUMN_SCHEMA => array(
+1 -1
src/applications/calendar/storage/PhabricatorCalendarHoliday.php
··· 5 5 protected $day; 6 6 protected $name; 7 7 8 - public function getConfiguration() { 8 + protected function getConfiguration() { 9 9 return array( 10 10 self::CONFIG_TIMESTAMPS => false, 11 11 self::CONFIG_COLUMN_SCHEMA => array(
+1 -1
src/applications/chatlog/storage/PhabricatorChatLogChannel.php
··· 10 10 protected $viewPolicy; 11 11 protected $editPolicy; 12 12 13 - public function getConfiguration() { 13 + protected function getConfiguration() { 14 14 return array( 15 15 self::CONFIG_COLUMN_SCHEMA => array( 16 16 'serviceName' => 'text64',
+1 -1
src/applications/chatlog/storage/PhabricatorChatLogEvent.php
··· 13 13 14 14 private $channel = self::ATTACHABLE; 15 15 16 - public function getConfiguration() { 16 + protected function getConfiguration() { 17 17 return array( 18 18 self::CONFIG_TIMESTAMPS => false, 19 19 self::CONFIG_COLUMN_SCHEMA => array(
+1 -1
src/applications/conduit/storage/PhabricatorConduitCertificateToken.php
··· 5 5 protected $userPHID; 6 6 protected $token; 7 7 8 - public function getConfiguration() { 8 + protected function getConfiguration() { 9 9 return array( 10 10 self::CONFIG_COLUMN_SCHEMA => array( 11 11 'token' => 'text64?',
+1 -1
src/applications/conduit/storage/PhabricatorConduitConnectionLog.php
··· 7 7 protected $clientDescription; 8 8 protected $username; 9 9 10 - public function getConfiguration() { 10 + protected function getConfiguration() { 11 11 return array( 12 12 self::CONFIG_COLUMN_SCHEMA => array( 13 13 'client' => 'text255?',
+1 -1
src/applications/conduit/storage/PhabricatorConduitMethodCallLog.php
··· 10 10 protected $error; 11 11 protected $duration; 12 12 13 - public function getConfiguration() { 13 + protected function getConfiguration() { 14 14 return array( 15 15 self::CONFIG_COLUMN_SCHEMA => array( 16 16 'id' => 'auto64',
+1 -1
src/applications/conduit/storage/PhabricatorConduitToken.php
··· 15 15 const TYPE_COMMANDLINE = 'cli'; 16 16 const TYPE_CLUSTER = 'clr'; 17 17 18 - public function getConfiguration() { 18 + protected function getConfiguration() { 19 19 return array( 20 20 self::CONFIG_COLUMN_SCHEMA => array( 21 21 'tokenType' => 'text32',
+1 -1
src/applications/config/storage/PhabricatorConfigEntry.php
··· 11 11 protected $value; 12 12 protected $isDeleted; 13 13 14 - public function getConfiguration() { 14 + protected function getConfiguration() { 15 15 return array( 16 16 self::CONFIG_AUX_PHID => true, 17 17 self::CONFIG_SERIALIZATION => array(
+1 -1
src/applications/conpherence/storage/ConpherenceIndex.php
··· 8 8 protected $previousTransactionPHID; 9 9 protected $corpus; 10 10 11 - public function getConfiguration() { 11 + protected function getConfiguration() { 12 12 return array( 13 13 self::CONFIG_TIMESTAMPS => false, 14 14 self::CONFIG_COLUMN_SCHEMA => array(
+1 -1
src/applications/conpherence/storage/ConpherenceParticipant.php
··· 10 10 protected $dateTouched; 11 11 protected $settings = array(); 12 12 13 - public function getConfiguration() { 13 + protected function getConfiguration() { 14 14 return array( 15 15 self::CONFIG_SERIALIZATION => array( 16 16 'settings' => self::SERIALIZATION_JSON,
+1 -1
src/applications/conpherence/storage/ConpherenceThread.php
··· 21 21 ->setTitle(''); 22 22 } 23 23 24 - public function getConfiguration() { 24 + protected function getConfiguration() { 25 25 return array( 26 26 self::CONFIG_AUX_PHID => true, 27 27 self::CONFIG_SERIALIZATION => array(
+1 -1
src/applications/conpherence/storage/ConpherenceTransactionComment.php
··· 9 9 return new ConpherenceTransaction(); 10 10 } 11 11 12 - public function getConfiguration() { 12 + protected function getConfiguration() { 13 13 $config = parent::getConfiguration(); 14 14 15 15 $config[self::CONFIG_COLUMN_SCHEMA] = array(
+1 -1
src/applications/countdown/storage/PhabricatorCountdown.php
··· 24 24 ->setEpoch(PhabricatorTime::getNow()); 25 25 } 26 26 27 - public function getConfiguration() { 27 + protected function getConfiguration() { 28 28 return array( 29 29 self::CONFIG_AUX_PHID => true, 30 30 self::CONFIG_COLUMN_SCHEMA => array(
+1 -1
src/applications/daemon/storage/PhabricatorDaemonLog.php
··· 19 19 protected $envHash; 20 20 protected $status; 21 21 22 - public function getConfiguration() { 22 + protected function getConfiguration() { 23 23 return array( 24 24 self::CONFIG_SERIALIZATION => array( 25 25 'argv' => self::SERIALIZATION_JSON,
+1 -1
src/applications/daemon/storage/PhabricatorDaemonLogEvent.php
··· 7 7 protected $message; 8 8 protected $epoch; 9 9 10 - public function getConfiguration() { 10 + protected function getConfiguration() { 11 11 return array( 12 12 self::CONFIG_TIMESTAMPS => false, 13 13 self::CONFIG_COLUMN_SCHEMA => array(
+1 -1
src/applications/dashboard/storage/PhabricatorDashboard.php
··· 36 36 return $dst; 37 37 } 38 38 39 - public function getConfiguration() { 39 + protected function getConfiguration() { 40 40 return array( 41 41 self::CONFIG_AUX_PHID => true, 42 42 self::CONFIG_SERIALIZATION => array(
+1 -1
src/applications/dashboard/storage/PhabricatorDashboardInstall.php
··· 14 14 protected $applicationClass; 15 15 protected $dashboardPHID; 16 16 17 - public function getConfiguration() { 17 + protected function getConfiguration() { 18 18 return array( 19 19 self::CONFIG_COLUMN_SCHEMA => array( 20 20 'applicationClass' => 'text64',
+1 -1
src/applications/dashboard/storage/PhabricatorDashboardPanel.php
··· 38 38 return $dst; 39 39 } 40 40 41 - public function getConfiguration() { 41 + protected function getConfiguration() { 42 42 return array( 43 43 self::CONFIG_AUX_PHID => true, 44 44 self::CONFIG_SERIALIZATION => array(
+1 -1
src/applications/differential/storage/DifferentialAffectedPath.php
··· 11 11 protected $epoch; 12 12 protected $revisionID; 13 13 14 - public function getConfiguration() { 14 + protected function getConfiguration() { 15 15 return array( 16 16 self::CONFIG_TIMESTAMPS => false, 17 17 self::CONFIG_COLUMN_SCHEMA => array(
+1 -1
src/applications/differential/storage/DifferentialDiff.php
··· 41 41 private $revision = self::ATTACHABLE; 42 42 private $properties = array(); 43 43 44 - public function getConfiguration() { 44 + protected function getConfiguration() { 45 45 return array( 46 46 self::CONFIG_AUX_PHID => true, 47 47 self::CONFIG_COLUMN_SCHEMA => array(
+1 -1
src/applications/differential/storage/DifferentialDraft.php
··· 6 6 protected $authorPHID; 7 7 protected $draftKey; 8 8 9 - public function getConfiguration() { 9 + protected function getConfiguration() { 10 10 return array( 11 11 self::CONFIG_COLUMN_SCHEMA => array( 12 12 'draftKey' => 'text64',
+1 -1
src/applications/differential/storage/DifferentialHunkLegacy.php
··· 4 4 5 5 protected $changes; 6 6 7 - public function getConfiguration() { 7 + protected function getConfiguration() { 8 8 return array( 9 9 self::CONFIG_COLUMN_SCHEMA => array( 10 10 'changes' => 'text?',
+1 -1
src/applications/differential/storage/DifferentialHunkModern.php
··· 20 20 return 'differential_hunk_modern'; 21 21 } 22 22 23 - public function getConfiguration() { 23 + protected function getConfiguration() { 24 24 return array( 25 25 self::CONFIG_BINARY => array( 26 26 'data' => true,
+1 -1
src/applications/differential/storage/DifferentialRevision.php
··· 67 67 ->setStatus(ArcanistDifferentialRevisionStatus::NEEDS_REVIEW); 68 68 } 69 69 70 - public function getConfiguration() { 70 + protected function getConfiguration() { 71 71 return array( 72 72 self::CONFIG_AUX_PHID => true, 73 73 self::CONFIG_SERIALIZATION => array(
+1 -1
src/applications/differential/storage/DifferentialTransactionComment.php
··· 16 16 return new DifferentialTransaction(); 17 17 } 18 18 19 - public function getConfiguration() { 19 + protected function getConfiguration() { 20 20 $config = parent::getConfiguration(); 21 21 $config[self::CONFIG_COLUMN_SCHEMA] = array( 22 22 'revisionPHID' => 'phid?',
+1 -1
src/applications/diviner/storage/DivinerLiveAtom.php
··· 6 6 protected $content; 7 7 protected $atomData; 8 8 9 - public function getConfiguration() { 9 + protected function getConfiguration() { 10 10 return array( 11 11 self::CONFIG_TIMESTAMPS => false, 12 12 self::CONFIG_SERIALIZATION => array(
+1 -1
src/applications/diviner/storage/DivinerLiveBook.php
··· 7 7 protected $viewPolicy; 8 8 protected $configurationData = array(); 9 9 10 - public function getConfiguration() { 10 + protected function getConfiguration() { 11 11 return array( 12 12 self::CONFIG_AUX_PHID => true, 13 13 self::CONFIG_SERIALIZATION => array(
+1 -1
src/applications/diviner/storage/DivinerLiveSymbol.php
··· 23 23 private $extends = self::ATTACHABLE; 24 24 private $children = self::ATTACHABLE; 25 25 26 - public function getConfiguration() { 26 + protected function getConfiguration() { 27 27 return array( 28 28 self::CONFIG_AUX_PHID => true, 29 29 self::CONFIG_TIMESTAMPS => false,
+1 -1
src/applications/doorkeeper/storage/DoorkeeperExternalObject.php
··· 13 13 protected $properties = array(); 14 14 protected $viewPolicy; 15 15 16 - public function getConfiguration() { 16 + protected function getConfiguration() { 17 17 return array( 18 18 self::CONFIG_AUX_PHID => true, 19 19 self::CONFIG_SERIALIZATION => array(
+1 -1
src/applications/draft/storage/PhabricatorDraft.php
··· 9 9 10 10 private $deleted = false; 11 11 12 - public function getConfiguration() { 12 + protected function getConfiguration() { 13 13 return array( 14 14 self::CONFIG_SERIALIZATION => array( 15 15 'metadata' => self::SERIALIZATION_JSON,
+1 -1
src/applications/drydock/storage/DrydockBlueprint.php
··· 32 32 ->setBlueprintName(''); 33 33 } 34 34 35 - public function getConfiguration() { 35 + protected function getConfiguration() { 36 36 return array( 37 37 self::CONFIG_AUX_PHID => true, 38 38 self::CONFIG_SERIALIZATION => array(
+1 -1
src/applications/drydock/storage/DrydockLease.php
··· 37 37 return pht('Lease %d', $this->getID()); 38 38 } 39 39 40 - public function getConfiguration() { 40 + protected function getConfiguration() { 41 41 return array( 42 42 self::CONFIG_AUX_PHID => true, 43 43 self::CONFIG_SERIALIZATION => array(
+1 -1
src/applications/drydock/storage/DrydockLog.php
··· 11 11 private $resource = self::ATTACHABLE; 12 12 private $lease = self::ATTACHABLE; 13 13 14 - public function getConfiguration() { 14 + protected function getConfiguration() { 15 15 return array( 16 16 self::CONFIG_TIMESTAMPS => false, 17 17 self::CONFIG_COLUMN_SCHEMA => array(
+1 -1
src/applications/drydock/storage/DrydockResource.php
··· 16 16 17 17 private $blueprint; 18 18 19 - public function getConfiguration() { 19 + protected function getConfiguration() { 20 20 return array( 21 21 self::CONFIG_AUX_PHID => true, 22 22 self::CONFIG_SERIALIZATION => array(
+1 -1
src/applications/fact/storage/PhabricatorFactAggregate.php
··· 6 6 protected $objectPHID; 7 7 protected $valueX; 8 8 9 - public function getConfiguration() { 9 + protected function getConfiguration() { 10 10 return array( 11 11 self::CONFIG_COLUMN_SCHEMA => array( 12 12 'id' => 'auto64',
+1 -1
src/applications/fact/storage/PhabricatorFactCursor.php
··· 5 5 protected $name; 6 6 protected $position; 7 7 8 - public function getConfiguration() { 8 + protected function getConfiguration() { 9 9 return array( 10 10 self::CONFIG_COLUMN_SCHEMA => array( 11 11 'name' => 'text64',
+1 -1
src/applications/fact/storage/PhabricatorFactDAO.php
··· 6 6 return 'fact'; 7 7 } 8 8 9 - public function getConfiguration() { 9 + protected function getConfiguration() { 10 10 return array( 11 11 self::CONFIG_TIMESTAMPS => false, 12 12 ) + parent::getConfiguration();
+1 -1
src/applications/fact/storage/PhabricatorFactRaw.php
··· 12 12 protected $valueY; 13 13 protected $epoch; 14 14 15 - public function getConfiguration() { 15 + protected function getConfiguration() { 16 16 return array( 17 17 self::CONFIG_COLUMN_SCHEMA => array( 18 18 'id' => 'auto64',
+1 -1
src/applications/feed/storage/PhabricatorFeedStoryData.php
··· 9 9 protected $authorPHID; 10 10 protected $chronologicalKey; 11 11 12 - public function getConfiguration() { 12 + protected function getConfiguration() { 13 13 return array( 14 14 self::CONFIG_AUX_PHID => true, 15 15 self::CONFIG_SERIALIZATION => array(
+1 -1
src/applications/feed/storage/PhabricatorFeedStoryReference.php
··· 5 5 protected $objectPHID; 6 6 protected $chronologicalKey; 7 7 8 - public function getConfiguration() { 8 + protected function getConfiguration() { 9 9 return array( 10 10 self::CONFIG_IDS => self::IDS_MANUAL, 11 11 self::CONFIG_TIMESTAMPS => false,
+1 -1
src/applications/files/storage/PhabricatorFile.php
··· 69 69 ->attachObjectPHIDs(array()); 70 70 } 71 71 72 - public function getConfiguration() { 72 + protected function getConfiguration() { 73 73 return array( 74 74 self::CONFIG_AUX_PHID => true, 75 75 self::CONFIG_SERIALIZATION => array(
+1 -1
src/applications/files/storage/PhabricatorFileStorageBlob.php
··· 7 7 8 8 protected $data; 9 9 10 - public function getConfiguration() { 10 + protected function getConfiguration() { 11 11 return array( 12 12 self::CONFIG_BINARY => array( 13 13 'data' => true,
+1 -1
src/applications/files/storage/PhabricatorFileTransactionComment.php
··· 12 12 return ($this->getTransactionPHID() != null); 13 13 } 14 14 15 - public function getConfiguration() { 15 + protected function getConfiguration() { 16 16 $config = parent::getConfiguration(); 17 17 $config[self::CONFIG_KEY_SCHEMA] = array( 18 18 'key_draft' => array(
+1 -1
src/applications/files/storage/PhabricatorTransformedFile.php
··· 6 6 protected $transform; 7 7 protected $transformedPHID; 8 8 9 - public function getConfiguration() { 9 + protected function getConfiguration() { 10 10 return array( 11 11 self::CONFIG_COLUMN_SCHEMA => array( 12 12 'transform' => 'text128',
+1 -1
src/applications/flag/storage/PhabricatorFlag.php
··· 13 13 private $handle = self::ATTACHABLE; 14 14 private $object = self::ATTACHABLE; 15 15 16 - public function getConfiguration() { 16 + protected function getConfiguration() { 17 17 return array( 18 18 self::CONFIG_COLUMN_SCHEMA => array( 19 19 'type' => 'text4',
+1 -1
src/applications/fund/storage/FundBacker.php
··· 23 23 ->setStatus(self::STATUS_NEW); 24 24 } 25 25 26 - public function getConfiguration() { 26 + protected function getConfiguration() { 27 27 return array( 28 28 self::CONFIG_AUX_PHID => true, 29 29 self::CONFIG_SERIALIZATION => array(
+1 -1
src/applications/fund/storage/FundInitiative.php
··· 50 50 ->setTotalAsCurrency(PhortuneCurrency::newEmptyCurrency()); 51 51 } 52 52 53 - public function getConfiguration() { 53 + protected function getConfiguration() { 54 54 return array( 55 55 self::CONFIG_AUX_PHID => true, 56 56 self::CONFIG_COLUMN_SCHEMA => array(
+1 -1
src/applications/harbormaster/storage/HarbormasterBuildCommand.php
··· 10 10 protected $targetPHID; 11 11 protected $command; 12 12 13 - public function getConfiguration() { 13 + protected function getConfiguration() { 14 14 return array( 15 15 self::CONFIG_COLUMN_SCHEMA => array( 16 16 'command' => 'text128',
+1 -1
src/applications/harbormaster/storage/HarbormasterBuildMessage.php
··· 22 22 ->setIsConsumed(0); 23 23 } 24 24 25 - public function getConfiguration() { 25 + protected function getConfiguration() { 26 26 return array( 27 27 self::CONFIG_COLUMN_SCHEMA => array( 28 28 'type' => 'text16',
+1 -1
src/applications/harbormaster/storage/HarbormasterBuildable.php
··· 153 153 return $build; 154 154 } 155 155 156 - public function getConfiguration() { 156 + protected function getConfiguration() { 157 157 return array( 158 158 self::CONFIG_AUX_PHID => true, 159 159 self::CONFIG_COLUMN_SCHEMA => array(
+1 -1
src/applications/harbormaster/storage/HarbormasterObject.php
··· 4 4 5 5 protected $name; 6 6 7 - public function getConfiguration() { 7 + protected function getConfiguration() { 8 8 return array( 9 9 self::CONFIG_AUX_PHID => true, 10 10 self::CONFIG_COLUMN_SCHEMA => array(
+1 -1
src/applications/harbormaster/storage/HarbormasterScratchTable.php
··· 11 11 protected $data; 12 12 protected $bigData; 13 13 14 - public function getConfiguration() { 14 + protected function getConfiguration() { 15 15 return array( 16 16 self::CONFIG_COLUMN_SCHEMA => array( 17 17 'data' => 'text64',
+1 -1
src/applications/harbormaster/storage/build/HarbormasterBuild.php
··· 142 142 return $result; 143 143 } 144 144 145 - public function getConfiguration() { 145 + protected function getConfiguration() { 146 146 return array( 147 147 self::CONFIG_AUX_PHID => true, 148 148 self::CONFIG_COLUMN_SCHEMA => array(
+1 -1
src/applications/harbormaster/storage/build/HarbormasterBuildArtifact.php
··· 21 21 ->setBuildTargetPHID($build_target->getPHID()); 22 22 } 23 23 24 - public function getConfiguration() { 24 + protected function getConfiguration() { 25 25 return array( 26 26 self::CONFIG_SERIALIZATION => array( 27 27 'artifactData' => self::SERIALIZATION_JSON,
+1 -1
src/applications/harbormaster/storage/build/HarbormasterBuildItem.php
··· 4 4 5 5 protected $name; 6 6 7 - public function getConfiguration() { 7 + protected function getConfiguration() { 8 8 return array( 9 9 self::CONFIG_AUX_PHID => true, 10 10 self::CONFIG_NO_TABLE => true,
+1 -1
src/applications/harbormaster/storage/build/HarbormasterBuildLog.php
··· 27 27 ->setLive(0); 28 28 } 29 29 30 - public function getConfiguration() { 30 + protected function getConfiguration() { 31 31 return array( 32 32 self::CONFIG_AUX_PHID => true, 33 33 self::CONFIG_COLUMN_SCHEMA => array(
+1 -1
src/applications/harbormaster/storage/build/HarbormasterBuildTarget.php
··· 93 93 ->setBuildGeneration($build->getBuildGeneration()); 94 94 } 95 95 96 - public function getConfiguration() { 96 + protected function getConfiguration() { 97 97 return array( 98 98 self::CONFIG_AUX_PHID => true, 99 99 self::CONFIG_SERIALIZATION => array(
+1 -1
src/applications/harbormaster/storage/configuration/HarbormasterBuildPlan.php
··· 19 19 ->setPlanStatus(self::STATUS_ACTIVE); 20 20 } 21 21 22 - public function getConfiguration() { 22 + protected function getConfiguration() { 23 23 return array( 24 24 self::CONFIG_AUX_PHID => true, 25 25 self::CONFIG_COLUMN_SCHEMA => array(
+1 -1
src/applications/harbormaster/storage/configuration/HarbormasterBuildStep.php
··· 21 21 return id(new HarbormasterBuildStep()); 22 22 } 23 23 24 - public function getConfiguration() { 24 + protected function getConfiguration() { 25 25 return array( 26 26 self::CONFIG_AUX_PHID => true, 27 27 self::CONFIG_SERIALIZATION => array(
+1 -1
src/applications/herald/storage/HeraldRule.php
··· 29 29 private $actions; 30 30 private $triggerObject = self::ATTACHABLE; 31 31 32 - public function getConfiguration() { 32 + protected function getConfiguration() { 33 33 return array( 34 34 self::CONFIG_AUX_PHID => true, 35 35 self::CONFIG_COLUMN_SCHEMA => array(
+1 -1
src/applications/herald/storage/HeraldRuleEdit.php
··· 7 7 protected $ruleName; 8 8 protected $action; 9 9 10 - public function getConfiguration() { 10 + protected function getConfiguration() { 11 11 return array( 12 12 self::CONFIG_COLUMN_SCHEMA => array( 13 13 'ruleName' => 'text255',
+1 -1
src/applications/legalpad/storage/LegalpadDocument.php
··· 48 48 ->setEditPolicy($edit_policy); 49 49 } 50 50 51 - public function getConfiguration() { 51 + protected function getConfiguration() { 52 52 return array( 53 53 self::CONFIG_AUX_PHID => true, 54 54 self::CONFIG_SERIALIZATION => array(
+1 -1
src/applications/legalpad/storage/LegalpadDocumentBody.php
··· 13 13 protected $title; 14 14 protected $text; 15 15 16 - public function getConfiguration() { 16 + protected function getConfiguration() { 17 17 return array( 18 18 self::CONFIG_AUX_PHID => true, 19 19 self::CONFIG_COLUMN_SCHEMA => array(
+1 -1
src/applications/legalpad/storage/LegalpadDocumentSignature.php
··· 21 21 22 22 private $document = self::ATTACHABLE; 23 23 24 - public function getConfiguration() { 24 + protected function getConfiguration() { 25 25 return array( 26 26 self::CONFIG_SERIALIZATION => array( 27 27 'signatureData' => self::SERIALIZATION_JSON,
+1 -1
src/applications/legalpad/storage/LegalpadTransactionComment.php
··· 19 19 return ($this->getTransactionPHID() != null); 20 20 } 21 21 22 - public function getConfiguration() { 22 + protected function getConfiguration() { 23 23 $config = parent::getConfiguration(); 24 24 $config[self::CONFIG_COLUMN_SCHEMA] = array( 25 25 'documentID' => 'id?',
+1 -1
src/applications/macro/storage/PhabricatorFileImageMacro.php
··· 40 40 return $this->assertAttached($this->audio); 41 41 } 42 42 43 - public function getConfiguration() { 43 + protected function getConfiguration() { 44 44 return array( 45 45 self::CONFIG_AUX_PHID => true, 46 46 self::CONFIG_COLUMN_SCHEMA => array(
+1 -1
src/applications/mailinglists/storage/PhabricatorMetaMTAMailingList.php
··· 14 14 PhabricatorMailingListListPHIDType::TYPECONST); 15 15 } 16 16 17 - public function getConfiguration() { 17 + protected function getConfiguration() { 18 18 return array( 19 19 self::CONFIG_AUX_PHID => true, 20 20 self::CONFIG_COLUMN_SCHEMA => array(
+1 -1
src/applications/maniphest/storage/ManiphestNameIndex.php
··· 9 9 protected $indexedObjectPHID; 10 10 protected $indexedObjectName; 11 11 12 - public function getConfiguration() { 12 + protected function getConfiguration() { 13 13 return array( 14 14 self::CONFIG_TIMESTAMPS => false, 15 15 self::CONFIG_COLUMN_SCHEMA => array(
+1 -1
src/applications/maniphest/storage/ManiphestTask.php
··· 60 60 ->attachSubscriberPHIDs(array()); 61 61 } 62 62 63 - public function getConfiguration() { 63 + protected function getConfiguration() { 64 64 return array( 65 65 self::CONFIG_AUX_PHID => true, 66 66 self::CONFIG_SERIALIZATION => array(
+1 -1
src/applications/metamta/storage/PhabricatorMetaMTAMail.php
··· 27 27 parent::__construct(); 28 28 } 29 29 30 - public function getConfiguration() { 30 + protected function getConfiguration() { 31 31 return array( 32 32 self::CONFIG_SERIALIZATION => array( 33 33 'parameters' => self::SERIALIZATION_JSON,
+1 -1
src/applications/metamta/storage/PhabricatorMetaMTAReceivedMail.php
··· 12 12 protected $message; 13 13 protected $messageIDHash = ''; 14 14 15 - public function getConfiguration() { 15 + protected function getConfiguration() { 16 16 return array( 17 17 self::CONFIG_SERIALIZATION => array( 18 18 'headers' => self::SERIALIZATION_JSON,
+1 -1
src/applications/notification/storage/PhabricatorFeedStoryNotification.php
··· 7 7 protected $chronologicalKey; 8 8 protected $hasViewed; 9 9 10 - public function getConfiguration() { 10 + protected function getConfiguration() { 11 11 return array( 12 12 self::CONFIG_IDS => self::IDS_MANUAL, 13 13 self::CONFIG_TIMESTAMPS => false,
+1 -1
src/applications/nuance/storage/NuanceItem.php
··· 23 23 ->setStatus(NuanceItem::STATUS_OPEN); 24 24 } 25 25 26 - public function getConfiguration() { 26 + protected function getConfiguration() { 27 27 return array( 28 28 self::CONFIG_AUX_PHID => true, 29 29 self::CONFIG_SERIALIZATION => array(
+1 -1
src/applications/nuance/storage/NuanceQueue.php
··· 9 9 protected $viewPolicy; 10 10 protected $editPolicy; 11 11 12 - public function getConfiguration() { 12 + protected function getConfiguration() { 13 13 return array( 14 14 self::CONFIG_AUX_PHID => true, 15 15 self::CONFIG_COLUMN_SCHEMA => array(
+1 -1
src/applications/nuance/storage/NuanceQueueItem.php
··· 8 8 protected $itemStatus; 9 9 protected $itemDateNuanced; 10 10 11 - public function getConfiguration() { 11 + protected function getConfiguration() { 12 12 return array( 13 13 self::CONFIG_COLUMN_SCHEMA => array( 14 14 'itemStatus' => 'uint32',
+1 -1
src/applications/nuance/storage/NuanceRequestor.php
··· 5 5 6 6 protected $data; 7 7 8 - public function getConfiguration() { 8 + protected function getConfiguration() { 9 9 return array( 10 10 self::CONFIG_AUX_PHID => true, 11 11 self::CONFIG_SERIALIZATION => array(
+1 -1
src/applications/nuance/storage/NuanceRequestorSource.php
··· 8 8 protected $sourceKey; 9 9 protected $data; 10 10 11 - public function getConfiguration() { 11 + protected function getConfiguration() { 12 12 return array( 13 13 self::CONFIG_SERIALIZATION => array( 14 14 'data' => self::SERIALIZATION_JSON,
+1 -1
src/applications/nuance/storage/NuanceSource.php
··· 12 12 protected $viewPolicy; 13 13 protected $editPolicy; 14 14 15 - public function getConfiguration() { 15 + protected function getConfiguration() { 16 16 return array( 17 17 self::CONFIG_AUX_PHID => true, 18 18 self::CONFIG_SERIALIZATION => array(
+1 -1
src/applications/oauthserver/storage/PhabricatorOAuthClientAuthorization.php
··· 17 17 return implode(' ', $scopes); 18 18 } 19 19 20 - public function getConfiguration() { 20 + protected function getConfiguration() { 21 21 return array( 22 22 self::CONFIG_AUX_PHID => true, 23 23 self::CONFIG_SERIALIZATION => array(
+1 -1
src/applications/oauthserver/storage/PhabricatorOAuthServerAccessToken.php
··· 8 8 protected $userPHID; 9 9 protected $clientPHID; 10 10 11 - public function getConfiguration() { 11 + protected function getConfiguration() { 12 12 return array( 13 13 self::CONFIG_COLUMN_SCHEMA => array( 14 14 'token' => 'text32',
+1 -1
src/applications/oauthserver/storage/PhabricatorOAuthServerAuthorizationCode.php
··· 10 10 protected $userPHID; 11 11 protected $redirectURI; 12 12 13 - public function getConfiguration() { 13 + protected function getConfiguration() { 14 14 return array( 15 15 self::CONFIG_COLUMN_SCHEMA => array( 16 16 'code' => 'text32',
+1 -1
src/applications/oauthserver/storage/PhabricatorOAuthServerClient.php
··· 27 27 ->setSecret(Filesystem::readRandomCharacters(32)); 28 28 } 29 29 30 - public function getConfiguration() { 30 + protected function getConfiguration() { 31 31 return array( 32 32 self::CONFIG_AUX_PHID => true, 33 33 self::CONFIG_COLUMN_SCHEMA => array(
+1 -1
src/applications/owners/storage/PhabricatorOwnersOwner.php
··· 9 9 // you want to recursively grab all user ids that own a package 10 10 protected $userPHID; 11 11 12 - public function getConfiguration() { 12 + protected function getConfiguration() { 13 13 return array( 14 14 self::CONFIG_TIMESTAMPS => false, 15 15 self::CONFIG_KEY_SCHEMA => array(
+1 -1
src/applications/owners/storage/PhabricatorOwnersPackage.php
··· 33 33 return null; 34 34 } 35 35 36 - public function getConfiguration() { 36 + protected function getConfiguration() { 37 37 return array( 38 38 // This information is better available from the history table. 39 39 self::CONFIG_TIMESTAMPS => false,
+1 -1
src/applications/owners/storage/PhabricatorOwnersPath.php
··· 7 7 protected $path; 8 8 protected $excluded; 9 9 10 - public function getConfiguration() { 10 + protected function getConfiguration() { 11 11 return array( 12 12 self::CONFIG_TIMESTAMPS => false, 13 13 self::CONFIG_COLUMN_SCHEMA => array(
+1 -1
src/applications/passphrase/storage/PassphraseCredential.php
··· 34 34 return 'K'.$this->getID(); 35 35 } 36 36 37 - public function getConfiguration() { 37 + protected function getConfiguration() { 38 38 return array( 39 39 self::CONFIG_AUX_PHID => true, 40 40 self::CONFIG_COLUMN_SCHEMA => array(
+1 -1
src/applications/passphrase/storage/PassphraseSecret.php
··· 4 4 5 5 protected $secretData; 6 6 7 - public function getConfiguration() { 7 + protected function getConfiguration() { 8 8 return array( 9 9 self::CONFIG_TIMESTAMPS => false, 10 10 self::CONFIG_BINARY => array(
+1 -1
src/applications/paste/storage/PhabricatorPaste.php
··· 43 43 return '/P'.$this->getID(); 44 44 } 45 45 46 - public function getConfiguration() { 46 + protected function getConfiguration() { 47 47 return array( 48 48 self::CONFIG_AUX_PHID => true, 49 49 self::CONFIG_COLUMN_SCHEMA => array(
+1 -1
src/applications/paste/storage/PhabricatorPasteTransactionComment.php
··· 15 15 return ($this->getTransactionPHID() != null); 16 16 } 17 17 18 - public function getConfiguration() { 18 + protected function getConfiguration() { 19 19 $config = parent::getConfiguration(); 20 20 $config[self::CONFIG_COLUMN_SCHEMA] = array( 21 21 'lineNumber' => 'uint32?',
+1 -1
src/applications/people/storage/PhabricatorExternalAccount.php
··· 33 33 PhabricatorPeopleExternalPHIDType::TYPECONST); 34 34 } 35 35 36 - public function getConfiguration() { 36 + protected function getConfiguration() { 37 37 return array( 38 38 self::CONFIG_AUX_PHID => true, 39 39 self::CONFIG_SERIALIZATION => array(
+1 -1
src/applications/people/storage/PhabricatorUser.php
··· 115 115 return $this->getPHID() && (phid_get_type($this->getPHID()) == $type_user); 116 116 } 117 117 118 - public function getConfiguration() { 118 + protected function getConfiguration() { 119 119 return array( 120 120 self::CONFIG_AUX_PHID => true, 121 121 self::CONFIG_COLUMN_SCHEMA => array(
+1 -1
src/applications/people/storage/PhabricatorUserEmail.php
··· 14 14 15 15 const MAX_ADDRESS_LENGTH = 128; 16 16 17 - public function getConfiguration() { 17 + protected function getConfiguration() { 18 18 return array( 19 19 self::CONFIG_COLUMN_SCHEMA => array( 20 20 'address' => 'sort128',
+1 -1
src/applications/people/storage/PhabricatorUserLog.php
··· 122 122 return parent::save(); 123 123 } 124 124 125 - public function getConfiguration() { 125 + protected function getConfiguration() { 126 126 return array( 127 127 self::CONFIG_SERIALIZATION => array( 128 128 'oldValue' => self::SERIALIZATION_JSON,
+1 -1
src/applications/people/storage/PhabricatorUserProfile.php
··· 7 7 protected $blurb; 8 8 protected $profileImagePHID; 9 9 10 - public function getConfiguration() { 10 + protected function getConfiguration() { 11 11 return array( 12 12 self::CONFIG_COLUMN_SCHEMA => array( 13 13 'title' => 'text255',
+1 -1
src/applications/phame/storage/PhameBlog.php
··· 21 21 22 22 static private $requestBlog; 23 23 24 - public function getConfiguration() { 24 + protected function getConfiguration() { 25 25 return array( 26 26 self::CONFIG_AUX_PHID => true, 27 27 self::CONFIG_SERIALIZATION => array(
+1 -1
src/applications/phame/storage/PhamePost.php
··· 82 82 return idx($config_data, 'comments_widget', 'none'); 83 83 } 84 84 85 - public function getConfiguration() { 85 + protected function getConfiguration() { 86 86 return array( 87 87 self::CONFIG_AUX_PHID => true, 88 88 self::CONFIG_SERIALIZATION => array(
+1 -1
src/applications/phlux/storage/PhluxVariable.php
··· 11 11 protected $viewPolicy; 12 12 protected $editPolicy; 13 13 14 - public function getConfiguration() { 14 + protected function getConfiguration() { 15 15 return array( 16 16 self::CONFIG_AUX_PHID => true, 17 17 self::CONFIG_SERIALIZATION => array(
+1 -1
src/applications/pholio/storage/PholioImage.php
··· 19 19 private $file = self::ATTACHABLE; 20 20 private $mock = self::ATTACHABLE; 21 21 22 - public function getConfiguration() { 22 + protected function getConfiguration() { 23 23 return array( 24 24 self::CONFIG_AUX_PHID => true, 25 25 self::CONFIG_COLUMN_SCHEMA => array(
+1 -1
src/applications/pholio/storage/PholioMock.php
··· 49 49 return 'M'.$this->getID(); 50 50 } 51 51 52 - public function getConfiguration() { 52 + protected function getConfiguration() { 53 53 return array( 54 54 self::CONFIG_AUX_PHID => true, 55 55 self::CONFIG_COLUMN_SCHEMA => array(
+1 -1
src/applications/pholio/storage/PholioTransactionComment.php
··· 14 14 return new PholioTransaction(); 15 15 } 16 16 17 - public function getConfiguration() { 17 + protected function getConfiguration() { 18 18 $config = parent::getConfiguration(); 19 19 20 20 $config[self::CONFIG_COLUMN_SCHEMA] = array(
+1 -1
src/applications/phortune/storage/PhortuneAccount.php
··· 73 73 return $cart->save(); 74 74 } 75 75 76 - public function getConfiguration() { 76 + protected function getConfiguration() { 77 77 return array( 78 78 self::CONFIG_AUX_PHID => true, 79 79 self::CONFIG_COLUMN_SCHEMA => array(
+1 -1
src/applications/phortune/storage/PhortuneCart.php
··· 508 508 return $this->getImplementation()->assertCanRefundOrder($this); 509 509 } 510 510 511 - public function getConfiguration() { 511 + protected function getConfiguration() { 512 512 return array( 513 513 self::CONFIG_AUX_PHID => true, 514 514 self::CONFIG_SERIALIZATION => array(
+1 -1
src/applications/phortune/storage/PhortuneCharge.php
··· 36 36 ->setAmountRefundedAsCurrency(PhortuneCurrency::newEmptyCurrency()); 37 37 } 38 38 39 - public function getConfiguration() { 39 + protected function getConfiguration() { 40 40 return array( 41 41 self::CONFIG_AUX_PHID => true, 42 42 self::CONFIG_SERIALIZATION => array(
+1 -1
src/applications/phortune/storage/PhortuneMerchant.php
··· 17 17 ->attachMemberPHIDs(array()); 18 18 } 19 19 20 - public function getConfiguration() { 20 + protected function getConfiguration() { 21 21 return array( 22 22 self::CONFIG_AUX_PHID => true, 23 23 self::CONFIG_COLUMN_SCHEMA => array(
+1 -1
src/applications/phortune/storage/PhortunePaymentMethod.php
··· 25 25 private $merchant = self::ATTACHABLE; 26 26 private $providerConfig = self::ATTACHABLE; 27 27 28 - public function getConfiguration() { 28 + protected function getConfiguration() { 29 29 return array( 30 30 self::CONFIG_AUX_PHID => true, 31 31 self::CONFIG_SERIALIZATION => array(
+1 -1
src/applications/phortune/storage/PhortunePaymentProviderConfig.php
··· 18 18 ->setIsEnabled(1); 19 19 } 20 20 21 - public function getConfiguration() { 21 + protected function getConfiguration() { 22 22 return array( 23 23 self::CONFIG_AUX_PHID => true, 24 24 self::CONFIG_SERIALIZATION => array(
+1 -1
src/applications/phortune/storage/PhortuneProduct.php
··· 14 14 15 15 private $implementation = self::ATTACHABLE; 16 16 17 - public function getConfiguration() { 17 + protected function getConfiguration() { 18 18 return array( 19 19 self::CONFIG_AUX_PHID => true, 20 20 self::CONFIG_SERIALIZATION => array(
+1 -1
src/applications/phortune/storage/PhortunePurchase.php
··· 36 36 ->setBasePriceAsCurrency($product->getPriceAsCurrency()); 37 37 } 38 38 39 - public function getConfiguration() { 39 + protected function getConfiguration() { 40 40 return array( 41 41 self::CONFIG_AUX_PHID => true, 42 42 self::CONFIG_SERIALIZATION => array(
+1 -1
src/applications/phpast/storage/PhabricatorXHPASTViewParseTree.php
··· 7 7 protected $input; 8 8 protected $stdout; 9 9 10 - public function getConfiguration() { 10 + protected function getConfiguration() { 11 11 return array( 12 12 self::CONFIG_COLUMN_SCHEMA => array( 13 13 'authorPHID' => 'phid?',
+1 -1
src/applications/phragment/storage/PhragmentFragment.php
··· 11 11 12 12 private $latestVersion = self::ATTACHABLE; 13 13 14 - public function getConfiguration() { 14 + protected function getConfiguration() { 15 15 return array( 16 16 self::CONFIG_AUX_PHID => true, 17 17 self::CONFIG_COLUMN_SCHEMA => array(
+1 -1
src/applications/phragment/storage/PhragmentFragmentVersion.php
··· 10 10 private $fragment = self::ATTACHABLE; 11 11 private $file = self::ATTACHABLE; 12 12 13 - public function getConfiguration() { 13 + protected function getConfiguration() { 14 14 return array( 15 15 self::CONFIG_AUX_PHID => true, 16 16 self::CONFIG_COLUMN_SCHEMA => array(
+1 -1
src/applications/phragment/storage/PhragmentSnapshot.php
··· 8 8 9 9 private $primaryFragment = self::ATTACHABLE; 10 10 11 - public function getConfiguration() { 11 + protected function getConfiguration() { 12 12 return array( 13 13 self::CONFIG_AUX_PHID => true, 14 14 self::CONFIG_COLUMN_SCHEMA => array(
+1 -1
src/applications/phragment/storage/PhragmentSnapshotChild.php
··· 11 11 private $fragment = self::ATTACHABLE; 12 12 private $fragmentVersion = self::ATTACHABLE; 13 13 14 - public function getConfiguration() { 14 + protected function getConfiguration() { 15 15 return array( 16 16 self::CONFIG_COLUMN_SCHEMA => array( 17 17 'fragmentVersionPHID' => 'phid?',
+1 -1
src/applications/phrequent/storage/PhrequentUserTime.php
··· 11 11 12 12 private $preemptingEvents = self::ATTACHABLE; 13 13 14 - public function getConfiguration() { 14 + protected function getConfiguration() { 15 15 return array( 16 16 self::CONFIG_COLUMN_SCHEMA => array( 17 17 'objectPHID' => 'phid?',
+1 -1
src/applications/phriction/storage/PhrictionContent.php
··· 28 28 $viewer); 29 29 } 30 30 31 - public function getConfiguration() { 31 + protected function getConfiguration() { 32 32 return array( 33 33 self::CONFIG_COLUMN_SCHEMA => array( 34 34 'version' => 'uint32',
+1 -1
src/applications/phriction/storage/PhrictionDocument.php
··· 20 20 private $contentObject = self::ATTACHABLE; 21 21 private $ancestors = array(); 22 22 23 - public function getConfiguration() { 23 + protected function getConfiguration() { 24 24 return array( 25 25 self::CONFIG_AUX_PHID => true, 26 26 self::CONFIG_TIMESTAMPS => false,
+1 -1
src/applications/policy/storage/PhabricatorPolicy.php
··· 19 19 20 20 private $ruleObjects = self::ATTACHABLE; 21 21 22 - public function getConfiguration() { 22 + protected function getConfiguration() { 23 23 return array( 24 24 self::CONFIG_AUX_PHID => true, 25 25 self::CONFIG_SERIALIZATION => array(
+1 -1
src/applications/ponder/storage/PonderAnswer.php
··· 65 65 return $this->comments; 66 66 } 67 67 68 - public function getConfiguration() { 68 + protected function getConfiguration() { 69 69 return array( 70 70 self::CONFIG_AUX_PHID => true, 71 71 self::CONFIG_COLUMN_SCHEMA => array(
+1 -1
src/applications/ponder/storage/PonderQuestion.php
··· 31 31 private $vote; 32 32 private $comments; 33 33 34 - public function getConfiguration() { 34 + protected function getConfiguration() { 35 35 return array( 36 36 self::CONFIG_AUX_PHID => true, 37 37 self::CONFIG_COLUMN_SCHEMA => array(
+1 -1
src/applications/project/storage/PhabricatorProject.php
··· 129 129 return $this; 130 130 } 131 131 132 - public function getConfiguration() { 132 + protected function getConfiguration() { 133 133 return array( 134 134 self::CONFIG_AUX_PHID => true, 135 135 self::CONFIG_SERIALIZATION => array(
+1 -1
src/applications/project/storage/PhabricatorProjectColumn.php
··· 28 28 ->setStatus(self::STATUS_ACTIVE); 29 29 } 30 30 31 - public function getConfiguration() { 31 + protected function getConfiguration() { 32 32 return array( 33 33 self::CONFIG_AUX_PHID => true, 34 34 self::CONFIG_SERIALIZATION => array(
+1 -1
src/applications/project/storage/PhabricatorProjectColumnPosition.php
··· 10 10 11 11 private $column = self::ATTACHABLE; 12 12 13 - public function getConfiguration() { 13 + protected function getConfiguration() { 14 14 return array( 15 15 self::CONFIG_TIMESTAMPS => false, 16 16 self::CONFIG_COLUMN_SCHEMA => array(
+1 -1
src/applications/project/storage/PhabricatorProjectSlug.php
··· 5 5 protected $slug; 6 6 protected $projectPHID; 7 7 8 - public function getConfiguration() { 8 + protected function getConfiguration() { 9 9 return array( 10 10 self::CONFIG_COLUMN_SCHEMA => array( 11 11 'slug' => 'text128',
+1 -1
src/applications/releeph/storage/ReleephBranch.php
··· 25 25 private $project = self::ATTACHABLE; 26 26 private $cutPointCommit = self::ATTACHABLE; 27 27 28 - public function getConfiguration() { 28 + protected function getConfiguration() { 29 29 return array( 30 30 self::CONFIG_AUX_PHID => true, 31 31 self::CONFIG_SERIALIZATION => array(
+1 -1
src/applications/releeph/storage/ReleephProject.php
··· 25 25 private $repository = self::ATTACHABLE; 26 26 private $arcanistProject = self::ATTACHABLE; 27 27 28 - public function getConfiguration() { 28 + protected function getConfiguration() { 29 29 return array( 30 30 self::CONFIG_AUX_PHID => true, 31 31 self::CONFIG_SERIALIZATION => array(
+1 -1
src/applications/releeph/storage/ReleephRequest.php
··· 150 150 151 151 /* -( Lisk mechanics )----------------------------------------------------- */ 152 152 153 - public function getConfiguration() { 153 + protected function getConfiguration() { 154 154 return array( 155 155 self::CONFIG_AUX_PHID => true, 156 156 self::CONFIG_SERIALIZATION => array(
+1 -1
src/applications/repository/storage/PhabricatorRepository.php
··· 75 75 ->setPushPolicy($push_policy); 76 76 } 77 77 78 - public function getConfiguration() { 78 + protected function getConfiguration() { 79 79 return array( 80 80 self::CONFIG_AUX_PHID => true, 81 81 self::CONFIG_SERIALIZATION => array(
+1 -1
src/applications/repository/storage/PhabricatorRepositoryArcanistProject.php
··· 14 14 15 15 private $repository = self::ATTACHABLE; 16 16 17 - public function getConfiguration() { 17 + protected function getConfiguration() { 18 18 return array( 19 19 self::CONFIG_AUX_PHID => true, 20 20 self::CONFIG_TIMESTAMPS => false,
+1 -1
src/applications/repository/storage/PhabricatorRepositoryAuditRequest.php
··· 11 11 12 12 private $commit = self::ATTACHABLE; 13 13 14 - public function getConfiguration() { 14 + protected function getConfiguration() { 15 15 return array( 16 16 self::CONFIG_TIMESTAMPS => false, 17 17 self::CONFIG_SERIALIZATION => array(
+1 -1
src/applications/repository/storage/PhabricatorRepositoryBranch.php
··· 6 6 protected $name; 7 7 protected $lintCommit; 8 8 9 - public function getConfiguration() { 9 + protected function getConfiguration() { 10 10 return array( 11 11 self::CONFIG_COLUMN_SCHEMA => array( 12 12 'name' => 'text128',
+1 -1
src/applications/repository/storage/PhabricatorRepositoryCommit.php
··· 67 67 return $this; 68 68 } 69 69 70 - public function getConfiguration() { 70 + protected function getConfiguration() { 71 71 return array( 72 72 self::CONFIG_AUX_PHID => true, 73 73 self::CONFIG_TIMESTAMPS => false,
+1 -1
src/applications/repository/storage/PhabricatorRepositoryCommitData.php
··· 13 13 protected $commitMessage = ''; 14 14 protected $commitDetails = array(); 15 15 16 - public function getConfiguration() { 16 + protected function getConfiguration() { 17 17 return array( 18 18 self::CONFIG_TIMESTAMPS => false, 19 19 self::CONFIG_SERIALIZATION => array(
+1 -1
src/applications/repository/storage/PhabricatorRepositoryMirror.php
··· 14 14 ->setRemoteURI(''); 15 15 } 16 16 17 - public function getConfiguration() { 17 + protected function getConfiguration() { 18 18 return array( 19 19 self::CONFIG_AUX_PHID => true, 20 20 self::CONFIG_COLUMN_SCHEMA => array(
+1 -1
src/applications/repository/storage/PhabricatorRepositoryPushEvent.php
··· 24 24 ->setPusherPHID($viewer->getPHID()); 25 25 } 26 26 27 - public function getConfiguration() { 27 + protected function getConfiguration() { 28 28 return array( 29 29 self::CONFIG_AUX_PHID => true, 30 30 self::CONFIG_TIMESTAMPS => false,
+1 -1
src/applications/repository/storage/PhabricatorRepositoryPushLog.php
··· 65 65 ); 66 66 } 67 67 68 - public function getConfiguration() { 68 + protected function getConfiguration() { 69 69 return array( 70 70 self::CONFIG_AUX_PHID => true, 71 71 self::CONFIG_TIMESTAMPS => false,
+1 -1
src/applications/repository/storage/PhabricatorRepositoryRefCursor.php
··· 21 21 22 22 private $repository = self::ATTACHABLE; 23 23 24 - public function getConfiguration() { 24 + protected function getConfiguration() { 25 25 return array( 26 26 self::CONFIG_TIMESTAMPS => false, 27 27 self::CONFIG_BINARY => array(
+1 -1
src/applications/repository/storage/PhabricatorRepositoryStatusMessage.php
··· 17 17 protected $parameters = array(); 18 18 protected $epoch; 19 19 20 - public function getConfiguration() { 20 + protected function getConfiguration() { 21 21 return array( 22 22 self::CONFIG_TIMESTAMPS => false, 23 23 self::CONFIG_SERIALIZATION => array(
+1 -1
src/applications/repository/storage/PhabricatorRepositorySymbol.php
··· 20 20 private $arcanistProject = self::ATTACHABLE; 21 21 private $repository = self::ATTACHABLE; 22 22 23 - public function getConfiguration() { 23 + protected function getConfiguration() { 24 24 return array( 25 25 self::CONFIG_IDS => self::IDS_MANUAL, 26 26 self::CONFIG_TIMESTAMPS => false,
+1 -1
src/applications/repository/storage/PhabricatorRepositoryVCSPassword.php
··· 6 6 protected $userPHID; 7 7 protected $passwordHash; 8 8 9 - public function getConfiguration() { 9 + protected function getConfiguration() { 10 10 return array( 11 11 self::CONFIG_COLUMN_SCHEMA => array( 12 12 'passwordHash' => 'text128',
+1 -1
src/applications/search/storage/PhabricatorNamedQuery.php
··· 12 12 protected $isDisabled = 0; 13 13 protected $sequence = 0; 14 14 15 - public function getConfiguration() { 15 + protected function getConfiguration() { 16 16 return array( 17 17 self::CONFIG_COLUMN_SCHEMA => array( 18 18 'engineClassName' => 'text128',
+1 -1
src/applications/search/storage/PhabricatorSavedQuery.php
··· 7 7 protected $queryKey; 8 8 protected $engineClassName; 9 9 10 - public function getConfiguration() { 10 + protected function getConfiguration() { 11 11 return array( 12 12 self::CONFIG_SERIALIZATION => array( 13 13 'parameters' => self::SERIALIZATION_JSON,
+1 -1
src/applications/search/storage/document/PhabricatorSearchDocument.php
··· 7 7 protected $documentCreated; 8 8 protected $documentModified; 9 9 10 - public function getConfiguration() { 10 + protected function getConfiguration() { 11 11 return array( 12 12 self::CONFIG_TIMESTAMPS => false, 13 13 self::CONFIG_IDS => self::IDS_MANUAL,
+1 -1
src/applications/search/storage/document/PhabricatorSearchDocumentField.php
··· 7 7 protected $auxPHID; 8 8 protected $corpus; 9 9 10 - public function getConfiguration() { 10 + protected function getConfiguration() { 11 11 return array( 12 12 self::CONFIG_TIMESTAMPS => false, 13 13 self::CONFIG_IDS => self::IDS_MANUAL,
+1 -1
src/applications/search/storage/document/PhabricatorSearchDocumentRelationship.php
··· 7 7 protected $relatedType; 8 8 protected $relatedTime; 9 9 10 - public function getConfiguration() { 10 + protected function getConfiguration() { 11 11 return array( 12 12 self::CONFIG_TIMESTAMPS => false, 13 13 self::CONFIG_IDS => self::IDS_MANUAL,
+1 -1
src/applications/settings/storage/PhabricatorUserPreferences.php
··· 40 40 protected $userPHID; 41 41 protected $preferences = array(); 42 42 43 - public function getConfiguration() { 43 + protected function getConfiguration() { 44 44 return array( 45 45 self::CONFIG_SERIALIZATION => array( 46 46 'preferences' => self::SERIALIZATION_JSON,
+1 -1
src/applications/slowvote/storage/PhabricatorSlowvoteChoice.php
··· 6 6 protected $optionID; 7 7 protected $authorPHID; 8 8 9 - public function getConfiguration() { 9 + protected function getConfiguration() { 10 10 return array( 11 11 self::CONFIG_KEY_SCHEMA => array( 12 12 'pollID' => array(
+1 -1
src/applications/slowvote/storage/PhabricatorSlowvoteOption.php
··· 5 5 protected $pollID; 6 6 protected $name; 7 7 8 - public function getConfiguration() { 8 + protected function getConfiguration() { 9 9 return array( 10 10 self::CONFIG_COLUMN_SCHEMA => array( 11 11 'name' => 'text255',
+1 -1
src/applications/slowvote/storage/PhabricatorSlowvotePoll.php
··· 44 44 ->setViewPolicy($view_policy); 45 45 } 46 46 47 - public function getConfiguration() { 47 + protected function getConfiguration() { 48 48 return array( 49 49 self::CONFIG_AUX_PHID => true, 50 50 self::CONFIG_COLUMN_SCHEMA => array(
+1 -1
src/applications/system/storage/PhabricatorSystemActionLog.php
··· 8 8 protected $score; 9 9 protected $epoch; 10 10 11 - public function getConfiguration() { 11 + protected function getConfiguration() { 12 12 return array( 13 13 self::CONFIG_TIMESTAMPS => false, 14 14 self::CONFIG_COLUMN_SCHEMA => array(
+1 -1
src/applications/system/storage/PhabricatorSystemDestructionLog.php
··· 8 8 protected $objectMonogram; 9 9 protected $epoch; 10 10 11 - public function getConfiguration() { 11 + protected function getConfiguration() { 12 12 return array( 13 13 self::CONFIG_TIMESTAMPS => false, 14 14 self::CONFIG_COLUMN_SCHEMA => array(
+1 -1
src/applications/tokens/storage/PhabricatorToken.php
··· 7 7 protected $name; 8 8 protected $filePHID; 9 9 10 - public function getConfiguration() { 10 + protected function getConfiguration() { 11 11 return array( 12 12 self::CONFIG_AUX_PHID => true, 13 13 self::CONFIG_NO_TABLE => true,
+1 -1
src/applications/tokens/storage/PhabricatorTokenCount.php
··· 5 5 protected $objectPHID; 6 6 protected $tokenCount; 7 7 8 - public function getConfiguration() { 8 + protected function getConfiguration() { 9 9 return array( 10 10 self::CONFIG_IDS => self::IDS_MANUAL, 11 11 self::CONFIG_TIMESTAMPS => false,
+1 -1
src/applications/tokens/storage/PhabricatorTokenGiven.php
··· 9 9 10 10 private $object = self::ATTACHABLE; 11 11 12 - public function getConfiguration() { 12 + protected function getConfiguration() { 13 13 return array( 14 14 self::CONFIG_KEY_SCHEMA => array( 15 15 'key_all' => array(
+1 -1
src/applications/transactions/storage/PhabricatorApplicationTransaction.php
··· 99 99 return PhabricatorPHID::generateNewPHID($type, $subtype); 100 100 } 101 101 102 - public function getConfiguration() { 102 + protected function getConfiguration() { 103 103 return array( 104 104 self::CONFIG_AUX_PHID => true, 105 105 self::CONFIG_SERIALIZATION => array(
+1 -1
src/applications/transactions/storage/PhabricatorApplicationTransactionComment.php
··· 25 25 PhabricatorPHIDConstants::PHID_TYPE_XCMT); 26 26 } 27 27 28 - public function getConfiguration() { 28 + protected function getConfiguration() { 29 29 return array( 30 30 self::CONFIG_AUX_PHID => true, 31 31 self::CONFIG_COLUMN_SCHEMA => array(
+1 -1
src/applications/xhprof/storage/PhabricatorXHProfSample.php
··· 10 10 protected $controller; 11 11 protected $userPHID; 12 12 13 - public function getConfiguration() { 13 + protected function getConfiguration() { 14 14 return array( 15 15 self::CONFIG_COLUMN_SCHEMA => array( 16 16 'sampleRate' => 'uint32',
+1 -1
src/infrastructure/customfield/storage/PhabricatorCustomFieldIndexStorage.php
··· 7 7 protected $indexKey; 8 8 protected $indexValue; 9 9 10 - public function getConfiguration() { 10 + protected function getConfiguration() { 11 11 return array( 12 12 self::CONFIG_TIMESTAMPS => false, 13 13 ) + parent::getConfiguration();
+1 -1
src/infrastructure/customfield/storage/PhabricatorCustomFieldNumericIndexStorage.php
··· 3 3 abstract class PhabricatorCustomFieldNumericIndexStorage 4 4 extends PhabricatorCustomFieldIndexStorage { 5 5 6 - public function getConfiguration() { 6 + protected function getConfiguration() { 7 7 return array( 8 8 self::CONFIG_COLUMN_SCHEMA => array( 9 9 'indexKey' => 'bytes12',
+1 -1
src/infrastructure/customfield/storage/PhabricatorCustomFieldStorage.php
··· 7 7 protected $fieldIndex; 8 8 protected $fieldValue; 9 9 10 - public function getConfiguration() { 10 + protected function getConfiguration() { 11 11 return array( 12 12 self::CONFIG_TIMESTAMPS => false, 13 13 self::CONFIG_COLUMN_SCHEMA => array(
+1 -1
src/infrastructure/customfield/storage/PhabricatorCustomFieldStringIndexStorage.php
··· 3 3 abstract class PhabricatorCustomFieldStringIndexStorage 4 4 extends PhabricatorCustomFieldIndexStorage { 5 5 6 - public function getConfiguration() { 6 + protected function getConfiguration() { 7 7 return array( 8 8 self::CONFIG_COLUMN_SCHEMA => array( 9 9 'indexKey' => 'bytes12',
+1 -1
src/infrastructure/daemon/workers/storage/PhabricatorWorkerActiveTask.php
··· 7 7 private $serverTime; 8 8 private $localTime; 9 9 10 - public function getConfiguration() { 10 + protected function getConfiguration() { 11 11 $parent = parent::getConfiguration(); 12 12 13 13 $config = array(
+1 -1
src/infrastructure/daemon/workers/storage/PhabricatorWorkerArchiveTask.php
··· 9 9 protected $duration; 10 10 protected $result; 11 11 12 - public function getConfiguration() { 12 + protected function getConfiguration() { 13 13 $parent = parent::getConfiguration(); 14 14 15 15 $config = array(
+1 -1
src/infrastructure/daemon/workers/storage/PhabricatorWorkerTask.php
··· 15 15 private $data; 16 16 private $executionException; 17 17 18 - public function getConfiguration() { 18 + protected function getConfiguration() { 19 19 return array( 20 20 self::CONFIG_COLUMN_SCHEMA => array( 21 21 'taskClass' => 'text64',
+1 -1
src/infrastructure/daemon/workers/storage/PhabricatorWorkerTaskData.php
··· 4 4 5 5 protected $data; 6 6 7 - public function getConfiguration() { 7 + protected function getConfiguration() { 8 8 return array( 9 9 self::CONFIG_TIMESTAMPS => false, 10 10 self::CONFIG_SERIALIZATION => array(
+1 -1
src/infrastructure/sms/storage/PhabricatorSMS.php
··· 43 43 ->setProviderSMSID(Filesystem::readRandomCharacters(40)); 44 44 } 45 45 46 - public function getConfiguration() { 46 + protected function getConfiguration() { 47 47 return array( 48 48 self::CONFIG_COLUMN_SCHEMA => array( 49 49 'providerShortName' => 'text16',
+1 -1
src/infrastructure/storage/lisk/LiskDAO.php
··· 287 287 * to change these behaviors, you should override this method in your child 288 288 * class and change the options you're interested in. For example: 289 289 * 290 - * public function getConfiguration() { 290 + * protected function getConfiguration() { 291 291 * return array( 292 292 * Lisk_DataAccessObject::CONFIG_EXAMPLE => true, 293 293 * ) + parent::getConfiguration();
+1 -1
src/infrastructure/storage/lisk/__tests__/LiskIsolationTestDAO.php
··· 5 5 protected $name; 6 6 protected $phid; 7 7 8 - public function getConfiguration() { 8 + protected function getConfiguration() { 9 9 return array( 10 10 self::CONFIG_AUX_PHID => true, 11 11 ) + parent::getConfiguration();