Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F97577743
PhabricatorAuthHMACKey.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
Sun, Jan 5, 10:05
Size
497 B
Mime Type
text/x-php
Expires
Tue, Jan 7, 10:05 (2 d)
Engine
blob
Format
Raw Data
Handle
23430019
Attached To
rPH Phabricator
PhabricatorAuthHMACKey.php
View Options
<?php
final
class
PhabricatorAuthHMACKey
extends
PhabricatorAuthDAO
{
protected
$keyName
;
protected
$keyValue
;
protected
function
getConfiguration
()
{
return
array
(
self
::
CONFIG_COLUMN_SCHEMA
=>
array
(
'keyName'
=>
'text64'
,
'keyValue'
=>
'text128'
,
),
self
::
CONFIG_KEY_SCHEMA
=>
array
(
'key_name'
=>
array
(
'columns'
=>
array
(
'keyName'
),
'unique'
=>
true
,
),
),
)
+
parent
::
getConfiguration
();
}
}
Event Timeline
Log In to Comment