Skip to content

Commit 96865b0

Browse files
author
Jamie Hannaford
committed
fix append operator
1 parent 95495a4 commit 96865b0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Compute/v2/Api.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public function getFlavors()
3434
public function getFlavorsDetail()
3535
{
3636
$op = $this->getAll();
37-
$op['path'] += '/detail';
37+
$op['path'] .= '/detail';
3838
return $op;
3939
}
4040

@@ -67,7 +67,7 @@ public function getImages()
6767
public function getImagesDetail()
6868
{
6969
$op = $this->getAll();
70-
$op['path'] += '/detail';
70+
$op['path'] .= '/detail';
7171
return $op;
7272
}
7373

@@ -188,7 +188,7 @@ public function getServers()
188188
public function getServersDetail()
189189
{
190190
$definition = $this->getServers();
191-
$definition['path'] += '/detail';
191+
$definition['path'] .= '/detail';
192192
return $definition;
193193
}
194194

0 commit comments

Comments
 (0)