Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F122143378
DrydockCommandInterface.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, Jul 16, 02:55
Size
581 B
Mime Type
text/x-php
Expires
Fri, Jul 18, 02:55 (2 d)
Engine
blob
Format
Raw Data
Handle
27440299
Attached To
rPH Phabricator
DrydockCommandInterface.php
View Options
<?php
abstract
class
DrydockCommandInterface
extends
DrydockInterface
{
final
public
function
getInterfaceType
()
{
return
'command'
;
}
final
public
function
exec
(
$command
)
{
$argv
=
func_get_args
();
$exec
=
call_user_func_array
(
array
(
$this
,
'getExecFuture'
),
$argv
);
return
$exec
->
resolve
();
}
final
public
function
execx
(
$command
)
{
$argv
=
func_get_args
();
$exec
=
call_user_func_array
(
array
(
$this
,
'getExecFuture'
),
$argv
);
return
$exec
->
resolvex
();
}
abstract
public
function
getExecFuture
(
$command
);
}
Event Timeline
Log In to Comment