Skip to content

Commit f568a65

Browse files
committed
Strict check null === for UploadManager.php
1 parent 922c3ef commit f568a65

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)