Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102681710
PhabricatorDaemonLog.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, Feb 23, 05:07
Size
535 B
Mime Type
text/x-php
Expires
Tue, Feb 25, 05:07 (2 d)
Engine
blob
Format
Raw Data
Handle
24395498
Attached To
rPH Phabricator
PhabricatorDaemonLog.php
View Options
<?php
final
class
PhabricatorDaemonLog
extends
PhabricatorDaemonDAO
{
const
STATUS_UNKNOWN
=
'unknown'
;
const
STATUS_RUNNING
=
'run'
;
const
STATUS_DEAD
=
'dead'
;
const
STATUS_WAIT
=
'wait'
;
const
STATUS_EXITED
=
'exit'
;
protected
$daemon
;
protected
$host
;
protected
$pid
;
protected
$argv
;
protected
$status
;
public
function
getConfiguration
()
{
return
array
(
self
::
CONFIG_SERIALIZATION
=>
array
(
'argv'
=>
self
::
SERIALIZATION_JSON
,
),
)
+
parent
::
getConfiguration
();
}
}
Event Timeline
Log In to Comment