Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
33 | 1 | public function open($protocol, $host, $port, array $parameters = []) |
|
34 | { |
||
35 | 1 | $this->logger->debug(sprintf('Connecting to "%s://%s:%d"...', $protocol, $host, $port), [ |
|
36 | 1 | 'protocol' => $protocol, |
|
37 | 1 | 'host' => $host, |
|
38 | 1 | 'port' => $port, |
|
39 | 1 | 'parameters' => $parameters, |
|
40 | 1 | ]); |
|
41 | |||
42 | 1 | return $this->io->open($protocol, $host, $port, $parameters); |
|
43 | } |
||
44 | |||
77 |