<?php

namespace App\Integrations\Copyscape;

interface RequestInterface
{
    public function queryString(): string;

    public function method(): string;
}
