Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92297640
NuanceRequestorSource.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
Tue, Nov 19, 04:47
Size
816 B
Mime Type
text/x-php
Expires
Thu, Nov 21, 04:47 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22413625
Attached To
rPH Phabricator
NuanceRequestorSource.php
View Options
<?php
final
class
NuanceRequestorSource
extends
NuanceDAO
{
protected
$requestorPHID
;
protected
$sourcePHID
;
protected
$sourceKey
;
protected
$data
;
protected
function
getConfiguration
()
{
return
array
(
self
::
CONFIG_SERIALIZATION
=>
array
(
'data'
=>
self
::
SERIALIZATION_JSON
,
),
self
::
CONFIG_COLUMN_SCHEMA
=>
array
(
'sourceKey'
=>
'text128'
,
),
self
::
CONFIG_KEY_SCHEMA
=>
array
(
'key_source_key'
=>
array
(
'columns'
=>
array
(
'sourcePHID'
,
'sourceKey'
),
'unique'
=>
true
,
),
'key_requestor'
=>
array
(
'columns'
=>
array
(
'requestorPHID'
,
'id'
),
),
'key_source'
=>
array
(
'columns'
=>
array
(
'sourcePHID'
,
'id'
),
),
),
)
+
parent
::
getConfiguration
();
}
}
Event Timeline
Log In to Comment