<?php namespace GuzzleHttp\Handler; use 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); }
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
CurlFactory.php | File | 20.12 KB | 0644 |
|
CurlFactoryInterface.php | File | 702 B | 0644 |
|
CurlHandler.php | File | 1.23 KB | 0644 |
|
CurlMultiHandler.php | File | 5.49 KB | 0644 |
|
EasyHandle.php | File | 2.76 KB | 0644 |
|
MockHandler.php | File | 5.72 KB | 0644 |
|
Proxy.php | File | 1.73 KB | 0644 |
|
StreamHandler.php | File | 17.85 KB | 0644 |
|