<?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 * * @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; }
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
CurlFactory.php | File | 22.24 KB | 0644 |
|
CurlFactoryInterface.php | File | 657 B | 0644 |
|
CurlHandler.php | File | 1.3 KB | 0644 |
|
CurlMultiHandler.php | File | 7.76 KB | 0644 |
|
EasyHandle.php | File | 2.83 KB | 0644 |
|
HeaderProcessor.php | File | 1.03 KB | 0644 |
|
MockHandler.php | File | 6.26 KB | 0644 |
|
Proxy.php | File | 2.23 KB | 0644 |
|
StreamHandler.php | File | 20.19 KB | 0644 |
|