summaryrefslogtreecommitdiff
path: root/vendor/symfony/contracts/HttpClient/Exception/HttpExceptionInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/symfony/contracts/HttpClient/Exception/HttpExceptionInterface.php')
-rw-r--r--vendor/symfony/contracts/HttpClient/Exception/HttpExceptionInterface.php26
1 files changed, 0 insertions, 26 deletions
diff --git a/vendor/symfony/contracts/HttpClient/Exception/HttpExceptionInterface.php b/vendor/symfony/contracts/HttpClient/Exception/HttpExceptionInterface.php
deleted file mode 100644
index 0e9f39f6ee..0000000000
--- a/vendor/symfony/contracts/HttpClient/Exception/HttpExceptionInterface.php
+++ /dev/null
@@ -1,26 +0,0 @@
-<?php
-
-/*
- * This file is part of the Symfony package.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
-
-namespace Symfony\Contracts\HttpClient\Exception;
-
-use Symfony\Contracts\HttpClient\ResponseInterface;
-
-/**
- * Base interface for HTTP-related exceptions.
- *
- * @author Anton Chernikov <anton_ch1989@mail.ru>
- *
- * @experimental in 1.1
- */
-interface HttpExceptionInterface extends ExceptionInterface
-{
- public function getResponse(): ResponseInterface;
-}