| Total Complexity | 1 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | class WebSocket extends WscMain |
||
| 17 | { |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Sets parameters for Web Socket Client intercommunication |
||
| 21 | * |
||
| 22 | * @param string $url string representation of a socket utf, ex.: tcp://www.example.com:8000 or udp://example.com:13 |
||
| 23 | * @param WSConfig $config Client configuration settings e.g.: connection - timeout, ssl options, fragment message size to send etc. |
||
| 24 | * @throws Exception |
||
| 25 | */ |
||
| 26 | public function __construct(string $url, WSConfig $config) |
||
| 33 |