Skip to content

Commit 5ed009d

Browse files
committed
del unused value src/*
1 parent f73cc56 commit 5ed009d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Qiniu/Storage/BucketManager.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ public function copy($from_bucket, $from_key, $to_bucket, $to_key)
146146
$from = \Qiniu\entry($from_bucket, $from_key);
147147
$to = \Qiniu\entry($to_bucket, $to_key);
148148
$path = '/copy/' . $from . '/' . $to;
149-
list($_, $error) = $this->rsPost($path);
149+
list(, $error) = $this->rsPost($path);
150150
return $error;
151151
}
152152

@@ -166,7 +166,7 @@ public function move($from_bucket, $from_key, $to_bucket, $to_key)
166166
$from = \Qiniu\entry($from_bucket, $from_key);
167167
$to = \Qiniu\entry($to_bucket, $to_key);
168168
$path = '/move/' . $from . '/' . $to;
169-
list($_, $error) = $this->rsPost($path);
169+
list(, $error) = $this->rsPost($path);
170170
return $error;
171171
}
172172

@@ -185,7 +185,7 @@ public function changeMime($bucket, $key, $mime)
185185
$resource = \Qiniu\entry($bucket, $key);
186186
$encode_mime = \Qiniu\base64_urlSafeEncode($mime);
187187
$path = '/chgm/' . $resource . '/mime/' .$encode_mime;
188-
list($_, $error) = $this->rsPost($path);
188+
list(, $error) = $this->rsPost($path);
189189
return $error;
190190
}
191191

@@ -233,7 +233,7 @@ public function prefetch($bucket, $key)
233233
{
234234
$resource = \Qiniu\entry($bucket, $key);
235235
$path = '/prefetch/' . $resource;
236-
list($_, $error) = $this->ioPost($path);
236+
list(, $error) = $this->ioPost($path);
237237
return $error;
238238
}
239239

0 commit comments

Comments
 (0)