Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92750372
PhabricatorFactRaw.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
Sat, Nov 23, 10:15
Size
862 B
Mime Type
text/x-php
Expires
Mon, Nov 25, 10:15 (2 d)
Engine
blob
Format
Raw Data
Handle
22504189
Attached To
rPH Phabricator
PhabricatorFactRaw.php
View Options
<?php
/**
* Raw fact about an object.
*/
final
class
PhabricatorFactRaw
extends
PhabricatorFactDAO
{
protected
$factType
;
protected
$objectPHID
;
protected
$objectA
;
protected
$valueX
;
protected
$valueY
;
protected
$epoch
;
protected
function
getConfiguration
()
{
return
array
(
self
::
CONFIG_COLUMN_SCHEMA
=>
array
(
'id'
=>
'auto64'
,
'factType'
=>
'text32'
,
'objectA'
=>
'phid'
,
'valueX'
=>
'sint64'
,
'valueY'
=>
'sint64'
,
),
self
::
CONFIG_KEY_SCHEMA
=>
array
(
'objectPHID'
=>
array
(
'columns'
=>
array
(
'objectPHID'
),
),
'factType'
=>
array
(
'columns'
=>
array
(
'factType'
,
'epoch'
),
),
'factType_2'
=>
array
(
'columns'
=>
array
(
'factType'
,
'objectA'
),
),
),
)
+
parent
::
getConfiguration
();
}
}
Event Timeline
Log In to Comment