Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93041521
HarbormasterBuildCommand.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, Nov 25, 18:35
Size
605 B
Mime Type
text/x-php
Expires
Wed, Nov 27, 18:35 (2 d)
Engine
blob
Format
Raw Data
Handle
22560813
Attached To
rPH Phabricator
HarbormasterBuildCommand.php
View Options
<?php
final
class
HarbormasterBuildCommand
extends
HarbormasterDAO
{
const
COMMAND_PAUSE
=
'pause'
;
const
COMMAND_RESUME
=
'resume'
;
const
COMMAND_RESTART
=
'restart'
;
const
COMMAND_ABORT
=
'abort'
;
protected
$authorPHID
;
protected
$targetPHID
;
protected
$command
;
protected
function
getConfiguration
()
{
return
array
(
self
::
CONFIG_COLUMN_SCHEMA
=>
array
(
'command'
=>
'text128'
,
),
self
::
CONFIG_KEY_SCHEMA
=>
array
(
'key_target'
=>
array
(
'columns'
=>
array
(
'targetPHID'
),
),
),
)
+
parent
::
getConfiguration
();
}
}
Event Timeline
Log In to Comment