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 95495a4 commit 96865b0Copy full SHA for 96865b0
src/Compute/v2/Api.php
@@ -34,7 +34,7 @@ public function getFlavors()
34
public function getFlavorsDetail()
35
{
36
$op = $this->getAll();
37
- $op['path'] += '/detail';
+ $op['path'] .= '/detail';
38
return $op;
39
}
40
@@ -67,7 +67,7 @@ public function getImages()
67
public function getImagesDetail()
68
69
70
71
72
73
@@ -188,7 +188,7 @@ public function getServers()
188
public function getServersDetail()
189
190
$definition = $this->getServers();
191
- $definition['path'] += '/detail';
+ $definition['path'] .= '/detail';
192
return $definition;
193
194
0 commit comments