. */ namespace GameQ\Protocols; /** * GTA Five M Protocol Class * * Server base can be found at https://fivem.net/ * * Based on code found at https://github.com/LiquidObsidian/fivereborn-query * * @author Austin Bischoff * * Adding FiveM Player List by * @author Jesse Lukas * * @deprecated Use protocol CFX for querying your CitizenFX server */ class Gta5m extends Cfx { /** * The query protocol used to make the call * * @type string */ protected $protocol = 'gta5m'; /** * String name of this protocol class * * @type string */ protected $name = 'gta5m'; /** * Longer string name of this protocol class * * @type string */ protected $name_long = "GTA Five M"; }