11 lines
201 B
PHP
11 lines
201 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
final class DrydockLocalCommandInterface extends DrydockCommandInterface {
|
||
|
|
|
||
|
|
public function getExecFuture($command) {
|
||
|
|
$argv = func_get_args();
|
||
|
|
return newv('ExecFuture', $argv);
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|