Page MenuHomec4science

PhabricatorCustomFieldIndexStorage.php
No OneTemporary

File Metadata

Created
Tue, Jan 14, 14:04

PhabricatorCustomFieldIndexStorage.php

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

Event Timeline