Skip to content

Commit 97a29c1

Browse files
author
Jamie Hannaford
committed
fix syntax
1 parent 7956df8 commit 97a29c1

File tree

247 files changed

+266
-289
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

247 files changed

+266
-289
lines changed

samples/block_storage/v2/snapshots/create.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
'volumeId' => '{volumeId}',
1616
'name' => '{name}',
1717
'description' => '{description}',
18-
]);
18+
]);

samples/block_storage/v2/snapshots/delete.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
$service = $openstack->blockStorageV2();
1313

1414
$snapshot = $service->getSnapshot('{snapshotId}');
15-
$snapshot->delete();
15+
$snapshot->delete();

samples/block_storage/v2/snapshots/get.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111

1212
$service = $openstack->blockStorageV2();
1313

14-
$snapshot = $service->getSnapshot('{snapshotId}');
14+
$snapshot = $service->getSnapshot('{snapshotId}');

samples/block_storage/v2/snapshots/get_metadata.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
$service = $openstack->blockStorageV2();
1313

1414
$metadata = $service->getSnapshot('{snapshotId}')
15-
->getMetadata();
15+
->getMetadata();

samples/block_storage/v2/snapshots/merge_metadata.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515

1616
$snapshot->mergeMetadata([
1717
'{key}' => '{val}',
18-
]);
18+
]);

samples/block_storage/v2/snapshots/reset_metadata.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515

1616
$snapshot->resetMetadata([
1717
'{key}' => '{val}',
18-
]);
18+
]);

samples/block_storage/v2/snapshots/update.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
$snapshot->name = '{newName}';
1717
$snapshot->description = '{newDescription}';
1818

19-
$snapshot->update();
19+
$snapshot->update();

samples/block_storage/v2/volume_types/create.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313

1414
$volumeType = $service->createVolumeType([
1515
'name' => '{name}',
16-
]);
16+
]);

samples/block_storage/v2/volume_types/delete.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
$service = $openstack->blockStorageV2();
1313

1414
$volumeType = $service->getVolumeType('{volumeTypeId}');
15-
$volumeType->delete();
15+
$volumeType->delete();

samples/block_storage/v2/volume_types/get.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111

1212
$service = $openstack->blockStorageV2();
1313

14-
$volumeType = $service->getVolumeType('{volumeTypeId}');
14+
$volumeType = $service->getVolumeType('{volumeTypeId}');

0 commit comments

Comments
 (0)