X7ROOT File Manager
Current Path:
/home/cbholdings/pasukulu/lib/guzzlehttp/guzzle/src/Handler
home
/
cbholdings
/
pasukulu
/
lib
/
guzzlehttp
/
guzzle
/
src
/
Handler
/
📁
..
📄
CurlFactory.php
(22.16 KB)
📄
CurlFactoryInterface.php
(657 B)
📄
CurlHandler.php
(1.3 KB)
📄
CurlMultiHandler.php
(7.76 KB)
📄
EasyHandle.php
(2.83 KB)
📄
HeaderProcessor.php
(1.03 KB)
📄
MockHandler.php
(6.26 KB)
📄
Proxy.php
(2.23 KB)
📄
StreamHandler.php
(20.19 KB)
Editing: CurlFactoryInterface.php
<?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; }
Upload File
Create Folder