Skip to content

Commit 3a9f9d2

Browse files
committed
Optimization code
1 parent 48ccc82 commit 3a9f9d2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/pulpvideo.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
$secretKey = getenv('QINIU_SECRET_KEY');
1010
$auth = new Auth($accessKey, $secretKey);
1111
$config = new \Qiniu\Config();
12-
$ArgusManager = new \Qiniu\Storage\ArgusManager($auth, $config);
12+
$argusManager = new \Qiniu\Storage\ArgusManager($auth, $config);
1313

1414
$reqBody = array();
1515
$reqBody['uri'] = "xxxx";
@@ -46,7 +46,7 @@
4646
$body = json_encode($req);
4747

4848
$vid = "xxxx";
49-
list($ret, $err) = $ArgusManager->pulpVideo($body, $vid);
49+
list($ret, $err) = $argusManager->pulpVideo($body, $vid);
5050

5151
if ($err !== null) {
5252
var_dump($err);

0 commit comments

Comments
 (0)