From e255776b607d97539430e306e58223f1211eadfc Mon Sep 17 00:00:00 2001 From: Ryan Waterston Date: Wed, 24 Jun 2015 23:45:38 -0400 Subject: [PATCH] - Added in getHTTPHeaders and setHTTPHeaders --- JunosSpace.php | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/JunosSpace.php b/JunosSpace.php index ce87d66..65d8ced 100644 --- a/JunosSpace.php +++ b/JunosSpace.php @@ -25,6 +25,17 @@ public function __construct($server, $username, $password, $responseType='XML') } + public function getHTTPHeaders() + { + return $this->restlyte->getHTTPHeaders(); + } + + public function setHTTPHeaders($headers) + { + $this->restlyte->setHTTPHeaders($headers); + } + + /** * @return mixed */ @@ -230,4 +241,4 @@ public function whatIsResponseError(\Exception $e) } -} \ No newline at end of file +}