Skip to content

Commit

Permalink
minor #36764 [HttpClient] remove "experimental" annotations (nicolas-…
Browse files Browse the repository at this point in the history
…grekas)

This PR was merged into the 5.1-dev branch.

Discussion
----------

[HttpClient] remove "experimental" annotations

| Q             | A
| ------------- | ---
| Branch?       | master
| Bug fix?      | no
| New feature?  | no
| Deprecations? | no
| Tickets       | -
| License       | MIT
| Doc PR        | -

Commits
-------

db4cb51 [HttpClient] remove "experimental" annotations
  • Loading branch information
nicolas-grekas committed May 8, 2020
2 parents 2b554d8 + db4cb51 commit 012247d
Show file tree
Hide file tree
Showing 9 changed files with 0 additions and 19 deletions.
Expand Up @@ -15,8 +15,6 @@
* When a 4xx response is returned.
*
* @author Nicolas Grekas <p@tchwork.com>
*
* @experimental in 1.1
*/
interface ClientExceptionInterface extends HttpExceptionInterface
{
Expand Down
Expand Up @@ -15,8 +15,6 @@
* 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
{
Expand Down
Expand Up @@ -15,8 +15,6 @@
* The base interface for all exceptions in the contract.
*
* @author Nicolas Grekas <p@tchwork.com>
*
* @experimental in 1.1
*/
interface ExceptionInterface extends \Throwable
{
Expand Down
Expand Up @@ -17,8 +17,6 @@
* Base interface for HTTP-related exceptions.
*
* @author Anton Chernikov <anton_ch1989@mail.ru>
*
* @experimental in 1.1
*/
interface HttpExceptionInterface extends ExceptionInterface
{
Expand Down
Expand Up @@ -15,8 +15,6 @@
* 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
{
Expand Down
Expand Up @@ -15,8 +15,6 @@
* When a 5xx response is returned.
*
* @author Nicolas Grekas <p@tchwork.com>
*
* @experimental in 1.1
*/
interface ServerExceptionInterface extends HttpExceptionInterface
{
Expand Down
Expand Up @@ -15,8 +15,6 @@
* When any error happens at the transport level.
*
* @author Nicolas Grekas <p@tchwork.com>
*
* @experimental in 1.1
*/
interface TransportExceptionInterface extends ExceptionInterface
{
Expand Down
2 changes: 0 additions & 2 deletions src/Symfony/Contracts/HttpClient/Test/HttpClientTestCase.php
Expand Up @@ -19,8 +19,6 @@

/**
* A reference test suite for HttpClientInterface implementations.
*
* @experimental in 1.1
*/
abstract class HttpClientTestCase extends TestCase
{
Expand Down
3 changes: 0 additions & 3 deletions src/Symfony/Contracts/HttpClient/Test/TestHttpServer.php
Expand Up @@ -14,9 +14,6 @@
use Symfony\Component\Process\PhpExecutableFinder;
use Symfony\Component\Process\Process;

/**
* @experimental in 1.1
*/
class TestHttpServer
{
private static $started;
Expand Down

0 comments on commit 012247d

Please sign in to comment.