Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
50 | 2 | public function __construct($username, $hostname, $publicKeyFile, $privateKeyFile, $passPhrase = null, $localUsername = null) |
|
51 | { |
||
52 | 2 | $this->username = $username; |
|
53 | 2 | $this->hostname = $hostname; |
|
54 | 2 | $this->publicKeyFile = $publicKeyFile; |
|
55 | 2 | $this->privateKeyFile = $privateKeyFile; |
|
56 | 2 | $this->passPhrase = $passPhrase; |
|
57 | 2 | $this->localUsername = $localUsername; |
|
58 | 2 | } |
|
59 | |||
77 |