diff options
author | Avi Goldman <avrahamymgoldman@gmail.com> | 2016-06-22 11:44:41 -0400 |
---|---|---|
committer | Avi Goldman <avrahamymgoldman@gmail.com> | 2016-06-22 11:44:41 -0400 |
commit | d7f6b4b22e569ed0da339a9228f4202304fe7a05 (patch) | |
tree | 8f4da3d82e2b3eca9d60131ec768f3a5065382b9 /lib/SparkPost/SparkPostResponse.php | |
parent | 9f86fd39e85e7d3736b9b5c7ea5e95f5129773f4 (diff) | |
download | php-sparkpost-d7f6b4b22e569ed0da339a9228f4202304fe7a05.zip php-sparkpost-d7f6b4b22e569ed0da339a9228f4202304fe7a05.tar.gz php-sparkpost-d7f6b4b22e569ed0da339a9228f4202304fe7a05.tar.bz2 |
formatting and comments
Diffstat (limited to 'lib/SparkPost/SparkPostResponse.php')
-rw-r--r-- | lib/SparkPost/SparkPostResponse.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/SparkPost/SparkPostResponse.php b/lib/SparkPost/SparkPostResponse.php index 9104b33..08750f9 100644 --- a/lib/SparkPost/SparkPostResponse.php +++ b/lib/SparkPost/SparkPostResponse.php @@ -34,10 +34,12 @@ class SparkPostResponse implements ResponseInterface $json = json_decode($body_string, true); - return $json; + return $json; } - // pass these down to the response given in the constructor + /** + * pass these down to the response given in the constructor + */ public function getProtocolVersion() { return $this->response->getProtocolVersion(); |