Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F108019846
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, Apr 13, 06:33
Size
535 B
Mime Type
text/x-php
Expires
Tue, Apr 15, 06:33 (2 d)
Engine
blob
Format
Raw Data
Handle
25520936
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