. */ namespace GameQ\Protocols; use GameQ\Protocol; /** * Class Http * * Generic HTTP protocol class. Useful for making http based requests * * @package GameQ\Protocols * @author Austin Bischoff */ abstract class Http extends Protocol { /** * The query protocol used to make the call * * @type string */ protected $protocol = 'http'; /** * String name of this protocol class * * @type string */ protected $name = 'http'; /** * Longer string name of this protocol class * * @type string */ protected $name_long = "Generic HTTP protocol"; /** * Http protocol is TCP * * @var string */ protected $transport = self::TRANSPORT_TCP; /** * The client join link * * @type string */ protected $join_link = null; }