blob: eb486bf5b890bb3930c2a165c76e7b8ba7c2a0f3 (
plain) (
tree)
|
|
<?php
namespace Sabre\HTTP;
/**
* HTTP Response Mock object
*
* This class exists to make the transition to sabre/http easier.
*
* @copyright Copyright (C) fruux GmbH (https://fruux.com/)
* @author Evert Pot (http://evertpot.com/)
* @license http://sabre.io/license/ Modified BSD License
*/
class ResponseMock extends Response {
/**
* Making these public.
*/
public $body;
public $status;
}
|