Skip to content

Commit a7c996c

Browse files
committed
Merge pull request #138 from netroby/feature/strict-check-operation
Strict check in Operation.php
2 parents 3dadb2b + 8efae50 commit a7c996c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Qiniu/Processing/Operation.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public function execute($key, $fops)
3838
if (!$resp->ok()) {
3939
return array(null, new Error($url, $resp));
4040
}
41-
if ($resp->json() != null) {
41+
if ($resp->json() !== null) {
4242
return array($resp->json(), null);
4343
}
4444
return array($resp->body, null);

0 commit comments

Comments
 (0)