aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/sabre/dav/tests/Sabre/HTTP/ResponseMock.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/sabre/dav/tests/Sabre/HTTP/ResponseMock.php')
-rw-r--r--vendor/sabre/dav/tests/Sabre/HTTP/ResponseMock.php35
1 files changed, 14 insertions, 21 deletions
diff --git a/vendor/sabre/dav/tests/Sabre/HTTP/ResponseMock.php b/vendor/sabre/dav/tests/Sabre/HTTP/ResponseMock.php
index 16c034099..eb486bf5b 100644
--- a/vendor/sabre/dav/tests/Sabre/HTTP/ResponseMock.php
+++ b/vendor/sabre/dav/tests/Sabre/HTTP/ResponseMock.php
@@ -2,28 +2,21 @@
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 {
- public $headers = array();
- public $status = '';
- public $body = '';
-
- function setHeader($name,$value,$overwrite = true) {
-
- $this->headers[$name] = $value;
-
- }
-
- function sendStatus($code) {
-
- $this->status = $this->getStatusMessage($code, $this->defaultHttpVersion);
-
- }
-
- function sendBody($body) {
-
- $this->body = $body;
-
- }
+ /**
+ * Making these public.
+ */
+ public $body;
+ public $status;
}