[HttpClient] remove "experimental" annotations

This commit is contained in:
Nicolas Grekas 2020-05-08 22:08:25 +02:00
parent fb90fb3bb7
commit db4cb51f0c
9 changed files with 0 additions and 19 deletions

View File

@ -15,8 +15,6 @@ namespace Symfony\Contracts\HttpClient\Exception;
* When a 4xx response is returned.
*
* @author Nicolas Grekas <p@tchwork.com>
*
* @experimental in 1.1
*/
interface ClientExceptionInterface extends HttpExceptionInterface
{

View File

@ -15,8 +15,6 @@ namespace Symfony\Contracts\HttpClient\Exception;
* When a content-type cannot be decoded to the expected representation.
*
* @author Nicolas Grekas <p@tchwork.com>
*
* @experimental in 1.1
*/
interface DecodingExceptionInterface extends ExceptionInterface
{

View File

@ -15,8 +15,6 @@ namespace Symfony\Contracts\HttpClient\Exception;
* The base interface for all exceptions in the contract.
*
* @author Nicolas Grekas <p@tchwork.com>
*
* @experimental in 1.1
*/
interface ExceptionInterface extends \Throwable
{

View File

@ -17,8 +17,6 @@ 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
{

View File

@ -15,8 +15,6 @@ namespace Symfony\Contracts\HttpClient\Exception;
* When a 3xx response is returned and the "max_redirects" option has been reached.
*
* @author Nicolas Grekas <p@tchwork.com>
*
* @experimental in 1.1
*/
interface RedirectionExceptionInterface extends HttpExceptionInterface
{

View File

@ -15,8 +15,6 @@ namespace Symfony\Contracts\HttpClient\Exception;
* When a 5xx response is returned.
*
* @author Nicolas Grekas <p@tchwork.com>
*
* @experimental in 1.1
*/
interface ServerExceptionInterface extends HttpExceptionInterface
{

View File

@ -15,8 +15,6 @@ namespace Symfony\Contracts\HttpClient\Exception;
* When any error happens at the transport level.
*
* @author Nicolas Grekas <p@tchwork.com>
*
* @experimental in 1.1
*/
interface TransportExceptionInterface extends ExceptionInterface
{

View File

@ -19,8 +19,6 @@ use Symfony\Contracts\HttpClient\HttpClientInterface;
/**
* A reference test suite for HttpClientInterface implementations.
*
* @experimental in 1.1
*/
abstract class HttpClientTestCase extends TestCase
{

View File

@ -14,9 +14,6 @@ namespace Symfony\Contracts\HttpClient\Test;
use Symfony\Component\Process\PhpExecutableFinder;
use Symfony\Component\Process\Process;
/**
* @experimental in 1.1
*/
class TestHttpServer
{
private static $started;