grgk/seo-analyzer

View on GitHub
src/HttpClient/ClientInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace SeoAnalyzer\HttpClient;

use Psr\Http\Message\ResponseInterface;
use SeoAnalyzer\HttpClient\Exception\HttpException;

interface ClientInterface
{
    /**
     * @param string $url
     * @param array $options
     * @return ResponseInterface
     * @throws HttpException
     */
    public function get(string $url, array $options = []): ResponseInterface;
}