astehlik/typo3-extension-mediaoembed

View on GitHub
Classes/Request/HttpClient/HttpClientInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php

declare(strict_types=1);

namespace Sto\Mediaoembed\Request\HttpClient;

use Sto\Mediaoembed\Exception\HttpClientRequestException;

interface HttpClientInterface
{
    /**
     * @throws HttpClientRequestException
     */
    public function executeGetRequest(string $requestUrl): string;
}