Jyxo\Rpc\Server::getInstance PHP Method

getInstance() public static method

Returns class instance.
public static getInstance ( ) : self
return self
    public static function getInstance() : self
    {
        static $instance;
        if (null === $instance) {
            $instance = new static();
        }
        return $instance;
    }