File "HttpClientInterface.php"

Full Path: /var/www/drive/sentry/sentry/scripts/HttpClientInterface.php
File size: 197 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

declare(strict_types=1);

namespace Sentry\HttpClient;

use Sentry\Options;

interface HttpClientInterface
{
    public function sendRequest(Request $request, Options $options): Response;
}