Skip to content

Commit 11e253b

Browse files
committed
Merge pull request #146 from netroby/hotfix/strict-check-null
Strict check null === for UploadManager.php
2 parents ebbc784 + f568a65 commit 11e253b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Qiniu/Storage/UploadManager.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ public function putFile(
123123

124124
public static function trimParams($params)
125125
{
126-
if ($params == null) {
126+
if ($params === null) {
127127
return null;
128128
}
129129
$ret = array();

0 commit comments

Comments
 (0)