<?php

namespace App\Integrations\Google\PageSpeed;

interface RequestInterface
{
    public function queryString(): string;

    public function method(): string;
}
