Page MenuHomec4science

PhabricatorCustomFieldNumericIndexStorage.php
No OneTemporary

File Metadata

Created
Tue, Feb 4, 17:49

PhabricatorCustomFieldNumericIndexStorage.php

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

Event Timeline