Skip to content

Commit

Permalink
fix append operator
Browse files Browse the repository at this point in the history
  • Loading branch information
Jamie Hannaford committed Jan 19, 2016
1 parent 95495a4 commit 96865b0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Compute/v2/Api.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public function getFlavors()
public function getFlavorsDetail()
{
$op = $this->getAll();
$op['path'] += '/detail';
$op['path'] .= '/detail';
return $op;
}

Expand Down Expand Up @@ -67,7 +67,7 @@ public function getImages()
public function getImagesDetail()
{
$op = $this->getAll();
$op['path'] += '/detail';
$op['path'] .= '/detail';
return $op;
}

Expand Down Expand Up @@ -188,7 +188,7 @@ public function getServers()
public function getServersDetail()
{
$definition = $this->getServers();
$definition['path'] += '/detail';
$definition['path'] .= '/detail';
return $definition;
}

Expand Down

0 comments on commit 96865b0

Please sign in to comment.