Skip to content

Commit

Permalink
Fixed bug wrong string concat syntax
Browse files Browse the repository at this point in the history
Silly me
  • Loading branch information
haphan committed Jun 14, 2017
1 parent 4a46676 commit 88e959f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Compute/v2/Api.php
Original file line number Diff line number Diff line change
Expand Up @@ -683,7 +683,7 @@ public function getQuotaSet(): array
public function getQuotaSetDetail(): array
{
$data = $this->getQuotaSet();
$data['path'] += '/detail';
$data['path'] .= '/detail';

return $data;
}
Expand Down

0 comments on commit 88e959f

Please sign in to comment.