Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F123572709
PhabricatorCustomFieldNumericIndexStorage.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Mon, Jul 28, 09:44
Size
396 B
Mime Type
text/x-php
Expires
Wed, Jul 30, 09:44 (2 d)
Engine
blob
Format
Raw Data
Handle
27692783
Attached To
rPH Phabricator
PhabricatorCustomFieldNumericIndexStorage.php
View Options
<?php
abstract
class
PhabricatorCustomFieldNumericIndexStorage
extends
PhabricatorCustomFieldIndexStorage
{
public
function
formatForInsert
(
AphrontDatabaseConnection
$conn
)
{
return
qsprintf
(
$conn
,
'(%s, %s, %d)'
,
$this
->
getObjectPHID
(),
$this
->
getIndexKey
(),
$this
->
getIndexValue
());
}
public
function
getIndexValueType
()
{
return
'int'
;
}
}
Event Timeline
Log In to Comment