1<?php 2 3namespace Sabre\HTTP; 4 5/** 6 * HTTP Response Mock object 7 * 8 * This class exists to make the transition to sabre/http easier. 9 * 10 * @copyright Copyright (C) 2007-2015 fruux GmbH (https://fruux.com/). 11 * @author Evert Pot (http://evertpot.com/) 12 * @license http://sabre.io/license/ Modified BSD License 13 */ 14class ResponseMock extends Response { 15 16 /** 17 * Making these public. 18 */ 19 public $body; 20 public $status; 21 22} 23