. */ namespace GameQ\Protocols; /** * Class Squad * * Port reference: http://forums.joinsquad.com/topic/9559-query-ports/ * * @package GameQ\Protocols * @author Austin Bischoff */ class Squad extends Source { /** * String name of this protocol class * * @type string */ protected $name = 'squad'; /** * Longer string name of this protocol class * * @type string */ protected $name_long = "Squad"; /** * query_port = client_port + 19378 * 27165 = 7787 + 19378 * * @type int */ protected $port_diff = 19378; }