for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace EasyHttp;
use EasyHttp\Contracts\MessageContract;
use EasyHttp\Contracts\WebSocketContract;
/**
* SocketClient class
*
* @link https://github.com/shahradelahi/easy-http
* @author Shahrad Elahi (https://github.com/shahradelahi)
* @license https://github.com/shahradelahi/easy-http/blob/master/LICENSE (MIT License)
*/
abstract class SocketClient implements WebSocketContract, MessageContract
{
}