Page MenuHomec4science

PhabricatorCustomFieldStringIndexStorage.php
No OneTemporary

File Metadata

Created
Fri, Dec 27, 09:04

PhabricatorCustomFieldStringIndexStorage.php

<?php
abstract class PhabricatorCustomFieldStringIndexStorage
extends PhabricatorCustomFieldIndexStorage {
public function formatForInsert(AphrontDatabaseConnection $conn) {
return qsprintf(
$conn,
'(%s, %s, %s)',
$this->getObjectPHID(),
$this->getIndexKey(),
$this->getIndexValue());
}
public function getIndexValueType() {
return 'string';
}
}

Event Timeline