← All changes
|
includes/sdk/s3/GuzzleHttp/Handler/CurlFactoryInterface.php
+2
-5
1.2.3
→
1.4.1
View file →
| @@ -10,17 +10,14 @@ | ||
| 10 | 10 | * |
| 11 | 11 | * @param RequestInterface $request Request |
| 12 | 12 | * @param array $options Transfer options |
| 13 | 13 | * |
| 14 | - * @return EasyHandle | |
| 15 | 14 | * @throws \RuntimeException when an option cannot be applied |
| 16 | 15 | */ |
| 17 | - public function create(RequestInterface $request, array $options); | |
| 16 | + public function create(RequestInterface $request, array $options) : EasyHandle; | |
| 18 | 17 | /** |
| 19 | 18 | * Release an easy handle, allowing it to be reused or closed. |
| 20 | 19 | * |
| 21 | 20 | * This function must call unset on the easy handle's "handle" property. |
| 22 | - * | |
| 23 | - * @param EasyHandle $easy | |
| 24 | 21 | */ |
| 25 | - public function release(EasyHandle $easy); | |
| 22 | + public function release(EasyHandle $easy) : void; | |
| 26 | 23 | } |