Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91715712
PhabricatorDaemonLogEvent.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
Wed, Nov 13, 19:13
Size
550 B
Mime Type
text/x-php
Expires
Fri, Nov 15, 19:13 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22313039
Attached To
rPH Phabricator
PhabricatorDaemonLogEvent.php
View Options
<?php
final
class
PhabricatorDaemonLogEvent
extends
PhabricatorDaemonDAO
{
protected
$logID
;
protected
$logType
;
protected
$message
;
protected
$epoch
;
protected
function
getConfiguration
()
{
return
array
(
self
::
CONFIG_TIMESTAMPS
=>
false
,
self
::
CONFIG_COLUMN_SCHEMA
=>
array
(
'logType'
=>
'text4'
,
'message'
=>
'text'
,
),
self
::
CONFIG_KEY_SCHEMA
=>
array
(
'logID'
=>
array
(
'columns'
=>
array
(
'logID'
,
'epoch'
),
),
),
)
+
parent
::
getConfiguration
();
}
}
Event Timeline
Log In to Comment