Page MenuHomec4science

PhabricatorCustomFieldIndexStorage.php
No OneTemporary

File Metadata

Created
Mon, Oct 14, 13:49

PhabricatorCustomFieldIndexStorage.php

<?php
abstract class PhabricatorCustomFieldIndexStorage extends PhabricatorLiskDAO {
protected $objectPHID;
protected $indexKey;
protected $indexValue;
protected function getConfiguration() {
return array(
self::CONFIG_TIMESTAMPS => false,
) + parent::getConfiguration();
}
abstract public function formatForInsert(AphrontDatabaseConnection $conn);
abstract public function getIndexValueType();
}

Event Timeline