Skip to content

Commit 636cced

Browse files
authored
Merge pull request #183 from rbibby/master
Add method to get a CloudCostClient
2 parents 32a69a2 + 00cbb4c commit 636cced

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/Billing/Client.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,12 @@ public function recurringCosts()
2323
{
2424
return (new RecurringCostClient($this->httpClient))->auth($this->token);
2525
}
26+
27+
/**
28+
* @return CloudCostClient
29+
*/
30+
public function cloudCosts()
31+
{
32+
return (new CloudCostClient($this->httpClient))->auth($this->token);
33+
}
2634
}

0 commit comments

Comments
 (0)