| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 2.032 |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | 8 | public function connect(string $address, array $options = []): TransportInterface |
|
| 15 | { |
||
| 16 | 8 | parent::connect($address, $options); |
|
| 17 | |||
| 18 | 8 | if ($this->target === false) { |
|
| 19 | throw new RuntimeException('can`t open socket - ' . $this->errorNumber . ': ' . $this->errorMessage); |
||
| 20 | } |
||
| 21 | |||
| 22 | 8 | return $this; |
|
| 23 | } |
||
| 24 | } |
||
| 25 |