<?php

namespace App\Integrations\StatusCake;

interface RequestInterface
{
    public function queryString(): string;

    public function method(): string;
}
