File "HttpClientInterface.php"
Full Path: /var/www/drive/sentry/sentry-laravel/src/Sentry/Laravel/Features/Concerns/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;
}