Skip to content

Commit f1aa625

Browse files
derrabusnicolas-grekas
authored andcommitted
Add parameter type declarations to contracts.
1 parent 088bae7 commit f1aa625

File tree

5 files changed

+2
-10
lines changed

5 files changed

+2
-10
lines changed

ChunkInterface.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@
2121
* MUST be thrown by the destructor unless one was already thrown by another method.
2222
*
2323
* @author Nicolas Grekas <[email protected]>
24-
*
25-
* @experimental in 1.1
2624
*/
2725
interface ChunkInterface
2826
{

HttpClientInterface.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@
2020
* @see HttpClientTestCase for a reference test suite
2121
*
2222
* @author Nicolas Grekas <[email protected]>
23-
*
24-
* @experimental in 1.1
2523
*/
2624
interface HttpClientInterface
2725
{

ResponseInterface.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@
2222
* A (lazily retrieved) HTTP response.
2323
*
2424
* @author Nicolas Grekas <[email protected]>
25-
*
26-
* @experimental in 1.1
2725
*/
2826
interface ResponseInterface
2927
{

ResponseStreamInterface.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
* Yields response chunks, returned by HttpClientInterface::stream().
1616
*
1717
* @author Nicolas Grekas <[email protected]>
18-
*
19-
* @experimental in 1.1
2018
*/
2119
interface ResponseStreamInterface extends \Iterator
2220
{

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.1.3"
19+
"php": "^7.2.9"
2020
},
2121
"suggest": {
2222
"symfony/http-client-implementation": ""
@@ -27,7 +27,7 @@
2727
"minimum-stability": "dev",
2828
"extra": {
2929
"branch-alias": {
30-
"dev-master": "1.1-dev"
30+
"dev-master": "2.0-dev"
3131
}
3232
}
3333
}

0 commit comments

Comments
 (0)