Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F116771881
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
Mon, Jun 9, 02:42
Size
497 B
Mime Type
text/x-php
Expires
Wed, Jun 11, 02:42 (2 d)
Engine
blob
Format
Raw Data
Handle
26640775
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