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

Media Cloud Sync, version 1.2.12. 27 lines.

- Page: https://pluginprobe.com/plugins/media-cloud-sync/1.2.12/code/includes/sdk/s3/GuzzleHttp/Handler/CurlFactoryInterface.php
- Raw: https://pluginprobe.com/plugins/media-cloud-sync/1.2.12/raw/includes/sdk/s3/GuzzleHttp/Handler/CurlFactoryInterface.php
- Modified: 2024-10-27T10:40:38+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.2.12/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
     *
     * @return EasyHandle
     * @throws \RuntimeException when an option cannot be applied
     */
    public function create(RequestInterface $request, array $options);
    /**
     * Release an easy handle, allowing it to be reused or closed.
     *
     * This function must call unset on the easy handle's "handle" property.
     *
     * @param EasyHandle $easy
     */
    public function release(EasyHandle $easy);
}

```
