OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
firebase
/
vendor
/
guzzlehttp
/
guzzle
/
src
/
Handler
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/12/2024 10:34:07 AM
rwxr-xr-x
📄
CurlFactory.php
28.21 KB
08/12/2024 10:34:07 AM
rw-r--r--
📄
CurlFactoryInterface.php
682 bytes
08/12/2024 10:34:07 AM
rw-r--r--
📄
CurlHandler.php
1.35 KB
08/12/2024 10:34:07 AM
rw-r--r--
📄
CurlMultiHandler.php
8.77 KB
08/12/2024 10:34:07 AM
rw-r--r--
📄
EasyHandle.php
2.94 KB
08/12/2024 10:34:07 AM
rw-r--r--
📄
HeaderProcessor.php
1.07 KB
08/12/2024 10:34:07 AM
rw-r--r--
📄
MockHandler.php
6.46 KB
08/12/2024 10:34:07 AM
rw-r--r--
📄
Proxy.php
2.28 KB
08/12/2024 10:34:07 AM
rw-r--r--
📄
StreamHandler.php
21.71 KB
08/12/2024 10:34:07 AM
rw-r--r--
Editing: CurlFactoryInterface.php
Close
<?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; }