Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90819738
PhabricatorTokenCount.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 5, 01:48
Size
672 B
Mime Type
text/x-php
Expires
Thu, Nov 7, 01:48 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22138494
Attached To
rPH Phabricator
PhabricatorTokenCount.php
View Options
<?php
final
class
PhabricatorTokenCount
extends
PhabricatorTokenDAO
{
protected
$objectPHID
;
protected
$tokenCount
;
protected
function
getConfiguration
()
{
return
array
(
self
::
CONFIG_IDS
=>
self
::
IDS_MANUAL
,
self
::
CONFIG_TIMESTAMPS
=>
false
,
self
::
CONFIG_COLUMN_SCHEMA
=>
array
(
'id'
=>
'auto'
,
'tokenCount'
=>
'uint32'
,
),
self
::
CONFIG_KEY_SCHEMA
=>
array
(
'key_objectPHID'
=>
array
(
'columns'
=>
array
(
'objectPHID'
),
'unique'
=>
true
,
),
'key_count'
=>
array
(
'columns'
=>
array
(
'tokenCount'
),
),
),
)
+
parent
::
getConfiguration
();
}
}
Event Timeline
Log In to Comment