%PDF- %GIF98; %PNG;
Server : ApacheSystem : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : addictionfreeind ( 1003) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system Directory : /home/addictionfreeind/public_html/admin1/vendor/square/square/tests/ |
Upload File : |
<?php
namespace Square\Tests;
use Square\Http\HttpCallBack;
/**
* An HTTPCallBack that captures the request and response for use later
*/
class HttpCallBackCatcher extends HttpCallBack
{
/**
* Http request
* @var Square\Http\HttpRequest
*/
private $request;
/**
* Http Response
* @var Square\Http\HttpResponse
*/
private $response;
/**
* Create instance
*/
public function __construct()
{
$instance = $this;
parent::__construct(null, function ($httpContext) use ($instance) {
$instance->request = $httpContext->getRequest();
$instance->response = $httpContext->getResponse();
});
}
/**
* Get the HTTP Request object associated with this API call
* @return Square\Http\HttpRequest
*/
public function getRequest()
{
return $this->request;
}
/**
* Get the HTTP Response object associated with this API call
* @return Square\Http\HttpResponse
*/
public function getResponse()
{
return $this->response;
}
}