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 7f1b971 commit c908eb9Copy full SHA for c908eb9
samples/CDN/create-service.php
@@ -33,11 +33,11 @@
33
$service = $cdnService->createService(array(
34
'name' => '{name}',
35
'domains' => array(
36
- array('domain' => '{domain name}')
+ array('domain' => '{domainName}')
37
),
38
'origins' => array(
39
- array('origin' => '{origin address}')
+ array('origin' => '{originAddress}')
40
41
- 'flavorId' => '{flavor ID}'
+ 'flavorId' => '{flavorId}'
42
));
43
/** @var $service OpenCloud\CDN\Resource\Service **/
samples/CDN/purge-cached-service-asset.php
@@ -33,4 +33,4 @@
$service = $cdnService->getService('{serviceId}');
// 4. Purge a specific asset belonging to service.
-$service->purgeAssets('{asset URL}');
+$service->purgeAssets('{assetUrl}');
0 commit comments