Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F110038689
PhabricatorFeedStoryReference.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
Thu, Apr 24, 11:04
Size
753 B
Mime Type
text/x-php
Expires
Sat, Apr 26, 11:04 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
25759520
Attached To
rPH Phabricator
PhabricatorFeedStoryReference.php
View Options
<?php
final
class
PhabricatorFeedStoryReference
extends
PhabricatorFeedDAO
{
protected
$objectPHID
;
protected
$chronologicalKey
;
public
function
getConfiguration
()
{
return
array
(
self
::
CONFIG_IDS
=>
self
::
IDS_MANUAL
,
self
::
CONFIG_TIMESTAMPS
=>
false
,
self
::
CONFIG_COLUMN_SCHEMA
=>
array
(
'chronologicalKey'
=>
'uint64'
,
'id'
=>
null
,
),
self
::
CONFIG_KEY_SCHEMA
=>
array
(
'PRIMARY'
=>
null
,
'objectPHID'
=>
array
(
'columns'
=>
array
(
'objectPHID'
,
'chronologicalKey'
),
'unique'
=>
true
,
),
'chronologicalKey'
=>
array
(
'columns'
=>
array
(
'chronologicalKey'
),
),
),
)
+
parent
::
getConfiguration
();
}
}
Event Timeline
Log In to Comment