Skip to content
This repository has been archived by the owner on Nov 2, 2022. It is now read-only.

Commit

Permalink
Fixed a bug with the available plans Zone api
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesryanbell committed Feb 27, 2017
1 parent 5e38c90 commit 1c9203e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "jamesryanbell/cloudflare",
"description": "CloudFlare API - PHP",
"license": "MIT",
"version": "1.8.6",
"version": "1.8.7",
"keywords": ["cloudflare", "api"],
"authors": [
{
Expand Down
2 changes: 1 addition & 1 deletion src/CloudFlare/Zone/Plan.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class Plan extends Api
*/
public function available($zone_identifier)
{
return $this->get('zones/'.$zone_identifier.'/plans');
return $this->get('zones/'.$zone_identifier.'/available_rate_plans');
}

/**
Expand Down

0 comments on commit 1c9203e

Please sign in to comment.