Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F106896940
PhageExecuteAction.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, Apr 2, 05:35
Size
684 B
Mime Type
text/x-php
Expires
Fri, Apr 4, 05:35 (2 d)
Engine
blob
Format
Raw Data
Handle
25274970
Attached To
rPHU libphutil
PhageExecuteAction.php
View Options
<?php
final
class
PhageExecuteAction
extends
PhageAction
{
private
$command
;
private
$label
;
private
$exitCode
;
public
function
isContainerAction
()
{
return
false
;
}
public
function
setCommand
(
PhutilCommandString
$command
)
{
$this
->
command
=
$command
;
return
$this
;
}
public
function
getCommand
()
{
return
$this
->
command
;
}
public
function
setLabel
(
$label
)
{
$this
->
label
=
$label
;
return
$this
;
}
public
function
getLabel
()
{
return
$this
->
label
;
}
public
function
setExitCode
(
$exit_code
)
{
$this
->
exitCode
=
$exit_code
;
return
$this
;
}
public
function
getExitCode
()
{
return
$this
->
exitCode
;
}
}
Event Timeline
Log In to Comment