| Current Path : /home/rtorresani/www/vendor/magento/framework/HTTP/Test/Unit/Adapter/_files/ |
| Current File : //home/rtorresani/www/vendor/magento/framework/HTTP/Test/Unit/Adapter/_files/curl_exec_mock.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\Framework\HTTP\Adapter;
use Magento\Framework\HTTP\Test\Unit\Adapter\CurlTest;
/**
* Override global PHP function
*
* @SuppressWarnings("unused")
* @param mixed $resource
* @return string
*/
function curl_exec($resource)
{
return call_user_func(CurlTest::$curlExectClosure);
}