Page MenuHomec4science

PhabricatorCustomFieldIndexStorage.php
No OneTemporary

File Metadata

Created
Sun, Aug 25, 14:10

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