diff options
author | purplecode <niespammnie@gmail.com> | 2014-12-24 12:22:27 +0100 |
---|---|---|
committer | purplecode <niespammnie@gmail.com> | 2014-12-24 12:22:27 +0100 |
commit | 5b74984770c4228808138231c9580d22f7282475 (patch) | |
tree | 76594a6e1ace53e3f67bb400c9311655a1d6b4a6 /src | |
parent | ffd2008900b34c003e99e09d710586e0435f5af6 (diff) | |
download | php.curl-5b74984770c4228808138231c9580d22f7282475.zip php.curl-5b74984770c4228808138231c9580d22f7282475.tar.gz php.curl-5b74984770c4228808138231c9580d22f7282475.tar.bz2 |
formatting
Diffstat (limited to 'src')
-rw-r--r-- | src/PurpleCode/PCurl/Json/PJsonCurl.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/PurpleCode/PCurl/Json/PJsonCurl.php b/src/PurpleCode/PCurl/Json/PJsonCurl.php index 60f151b..2e5aa1a 100644 --- a/src/PurpleCode/PCurl/Json/PJsonCurl.php +++ b/src/PurpleCode/PCurl/Json/PJsonCurl.php @@ -40,7 +40,7 @@ class PJsonCurl extends PCurl { }
private function deserialize($response) {
- $json = json_decode($response, $this->deserializeToArray);
+ $json = json_decode($response, $this->deserializeToArray);
PCurlException::assert($this->isValidJson($response) && json_last_error() == JSON_ERROR_NONE, "Invalid JSON response format");
|