silverstripe-framework/src/Dev/TestSession_STResponseWrapper.php

79 lines
921 B
PHP
Raw Normal View History

<?php
namespace SilverStripe\Dev;
2016-09-09 08:43:05 +02:00
use SilverStripe\Control\HTTPResponse;
/**
2016-09-09 08:43:05 +02:00
* Wrapper around HTTPResponse to make it look like a SimpleHTTPResposne
*/
class TestSession_STResponseWrapper
{
/**
2016-09-09 08:43:05 +02:00
* @var HTTPResponse
*/
private $response;
2016-09-09 08:43:05 +02:00
public function __construct(HTTPResponse $response)
{
$this->response = $response;
}
/**
* @return string
*/
public function getContent()
{
return $this->response->getBody();
}
/**
* @return string
*/
public function getError()
{
return "";
}
/**
* @return null
*/
public function getSent()
{
return null;
}
/**
* @return string
*/
public function getHeaders()
{
return "";
}
/**
* @return string 'GET'
*/
public function getMethod()
{
return "GET";
}
/**
* @return string
*/
public function getUrl()
{
return "";
}
/**
* @return null
*/
public function getRequestData()
{
return null;
}
}