Insphpect

This tool is currently proof-of-concept. Your feedback and evaluation is valuable in helping to improve it and ensure its reports are meaninful.

Please click here to complete a short survey to tell us what you think. It should take less than 5 minutes and help further this research project!

GuzzleHttp\Handler\CurlFactoryInterface

Detected issues

Issue Method Line number

Code

Click highlighted lines for details

<?phpnamespace 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;}