1 | <?php |
||
13 | class RemoteTopCommand extends TopCommand |
||
14 | { |
||
15 | /** |
||
16 | * like user@ip |
||
17 | * |
||
18 | * @var string |
||
19 | */ |
||
20 | private $sshString; |
||
21 | |||
22 | private $sshIdentityFile; |
||
23 | |||
24 | private $sshPort; |
||
25 | |||
26 | public function __construct($sshString, $sshPort = null, $sshIdentityFile = null) |
||
34 | |||
35 | |||
36 | /** |
||
37 | * @return Command |
||
38 | */ |
||
39 | protected function buildCommand() |
||
61 | } |