| 1 | <?php |
||
| 6 | class Socket extends BaseTransport |
||
| 7 | { |
||
| 8 | |||
| 9 | protected $errorNumber = 0; |
||
| 10 | protected $errorMessage = ''; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @param string $address |
||
| 14 | * @param array $options |
||
| 15 | * |
||
| 16 | * @return TransportInterface |
||
| 17 | */ |
||
| 18 | 12 | public function connect(string $address, array $options = []): TransportInterface |
|
| 29 | } |
||
| 30 |