Correct Aphlict websocket URI construction after PHP8 compatibility changes
[phabricator.git] / src / infrastructure / customfield / storage / PhabricatorCustomFieldIndexStorage.php
blobd16be819f4acf2ec17c2023426f61ecd0807443c
1 <?php
3 abstract class PhabricatorCustomFieldIndexStorage extends PhabricatorLiskDAO {
5 protected $objectPHID;
6 protected $indexKey;
7 protected $indexValue;
9 protected function getConfiguration() {
10 return array(
11 self::CONFIG_TIMESTAMPS => false,
12 ) + parent::getConfiguration();
15 abstract public function formatForInsert(AphrontDatabaseConnection $conn);
16 abstract public function getIndexValueType();