Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/infrastructure/customfield/storage/PhabricatorCustomFieldIndexStorage.php
13418 views
1
<?php
2
3
abstract class PhabricatorCustomFieldIndexStorage extends PhabricatorLiskDAO {
4
5
protected $objectPHID;
6
protected $indexKey;
7
protected $indexValue;
8
9
protected function getConfiguration() {
10
return array(
11
self::CONFIG_TIMESTAMPS => false,
12
) + parent::getConfiguration();
13
}
14
15
abstract public function formatForInsert(AphrontDatabaseConnection $conn);
16
abstract public function getIndexValueType();
17
18
}
19
20