# media-cloud-sync/1.3.11/includes/sdk/s3/GuzzleHttp/Handler/CurlFactoryInterface.php

Media Cloud Sync, version 1.3.11. 24 lines.

- Page: https://pluginprobe.com/plugins/media-cloud-sync/1.3.11/code/includes/sdk/s3/GuzzleHttp/Handler/CurlFactoryInterface.php
- Raw: https://pluginprobe.com/plugins/media-cloud-sync/1.3.11/raw/includes/sdk/s3/GuzzleHttp/Handler/CurlFactoryInterface.php
- Modified: 2025-08-17T07:06:28+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/media-cloud-sync/1.3.11/code/includes/sdk/s3/GuzzleHttp/Handler/CurlFactoryInterface.php#L10-L20`.

```php
<?php

namespace Dudlewebs\WPMCS\s3\GuzzleHttp\Handler;

use Dudlewebs\WPMCS\s3\Psr\Http\Message\RequestInterface;
interface CurlFactoryInterface
{
    /**
     * Creates a cURL handle resource.
     *
     * @param RequestInterface $request Request
     * @param array            $options Transfer options
     *
     * @throws \RuntimeException when an option cannot be applied
     */
    public function create(RequestInterface $request, array $options) : EasyHandle;
    /**
     * Release an easy handle, allowing it to be reused or closed.
     *
     * This function must call unset on the easy handle's "handle" property.
     */
    public function release(EasyHandle $easy) : void;
}

```
