oont-contents/plugins/woocommerce-square/vendor/apimatic/unirest-php/tests/Mocking/HttpClientChild.php
2025-02-08 15:10:23 +01:00

18 lines
302 B
PHP

<?php
namespace Unirest\Test\Mocking;
use Unirest\HttpClient;
class HttpClientChild extends HttpClient
{
public function getTotalNumberOfConnections()
{
return $this->totalNumberOfConnections;
}
public function resetHandle()
{
$this->initializeHandle();
}
}