PluginProbe
Media Cloud Sync / 1.4.1
Media Cloud Sync v1.4.1
1.4.1 1.4.0 1.3.12 1.3.11 1.3.10 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.1.0 1.1.1 1.2.0 1.2.10 1.2.11 1.2.12 1.2.13 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 All 35 releases
← All changes | includes/sdk/s3/GuzzleHttp/Handler/CurlFactoryInterface.php +2 -5 1.2.31.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 }