We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48ccc82 commit 3a9f9d2Copy full SHA for 3a9f9d2
examples/pulpvideo.php
@@ -9,7 +9,7 @@
9
$secretKey = getenv('QINIU_SECRET_KEY');
10
$auth = new Auth($accessKey, $secretKey);
11
$config = new \Qiniu\Config();
12
-$ArgusManager = new \Qiniu\Storage\ArgusManager($auth, $config);
+$argusManager = new \Qiniu\Storage\ArgusManager($auth, $config);
13
14
$reqBody = array();
15
$reqBody['uri'] = "xxxx";
@@ -46,7 +46,7 @@
46
$body = json_encode($req);
47
48
$vid = "xxxx";
49
-list($ret, $err) = $ArgusManager->pulpVideo($body, $vid);
+list($ret, $err) = $argusManager->pulpVideo($body, $vid);
50
51
if ($err !== null) {
52
var_dump($err);
0 commit comments