Skip to content

Commit

Permalink
Better formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Connor Peet committed Jul 31, 2014
1 parent 28e812d commit 3c62d91
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,22 +37,22 @@ $factory->dnsGet([['zone_id' => 'a', 'dns_id' => 'b']]);

This may be preferable for functions with very long argument lists.

* ResponseInterface zoneCreate(mixed $name, bool $jump_start = null, array $organization = null)
* ResponseInterface zoneList(mixed $name = null, string $status = null, integer $page = null, integer $per_page = null, string $order = null, string $direction = null, string $match = null)
* ResponseInterface zoneGet(mixed $id)
* ResponseInterface zonePause(mixed $id)
* ResponseInterface zoneResume(mixed $id)
* ResponseInterface zonePurge(mixed $id, bool $purge_everything)
* ResponseInterface zonePurgeFiles(mixed $id, array $files = null)
* ResponseInterface zoneDelete(mixed $id)
* ResponseInterface plansList(mixed $zone_id)
* ResponseInterface plansGet(mixed $zone_id, string $plan_id)
* ResponseInterface plansSet(mixed $zone_id, string $plan_id)
* ResponseInterface dnsCreate(mixed $zone_id, string $type = null, string $name = null, string $content = null, integer $ttl = null)
* ResponseInterface dnsList(mixed $zone_id, string $name = null, string $content= null, string $vanity_name_server_record = null, integer $page = null, integer $per_page = null, string $order = null, string $direction = null, string $match = null)
* ResponseInterface dnsGet(mixed $zone_id, string $dns_id)
* ResponseInterface dnsUpdate(mixed $zone_id, string $dns_id, array $__data__)
* ResponseInterface dnsDelete(mixed $zone_id, string $dns_id)
* `ResponseInterface zoneCreate(mixed $name, bool $jump_start = null, array $organization = null)`
* `ResponseInterface zoneList(mixed $name = null, string $status = null, integer $page = null, integer $per_page = null, string $order = null, string $direction = null, string $match = null)`
* `ResponseInterface zoneGet(mixed $id)`
* `ResponseInterface zonePause(mixed $id)`
* `ResponseInterface zoneResume(mixed $id)`
* `ResponseInterface zonePurge(mixed $id, bool $purge_everything)`
* `ResponseInterface zonePurgeFiles(mixed $id, array $files = null)`
* `ResponseInterface zoneDelete(mixed $id)`
* `ResponseInterface plansList(mixed $zone_id)`
* `ResponseInterface plansGet(mixed $zone_id, string $plan_id)`
* `ResponseInterface plansSet(mixed $zone_id, string $plan_id)`
* `ResponseInterface dnsCreate(mixed $zone_id, string $type = null, string $name = null, string $content = null, integer $ttl = null)`
* `ResponseInterface dnsList(mixed $zone_id, string $name = null, string $content= null, string $vanity_name_server_record = null, integer $page = null, integer $per_page = null, string $order = null, string $direction = null, string $match = null)`
* `ResponseInterface dnsGet(mixed $zone_id, string $dns_id)`
* `ResponseInterface dnsUpdate(mixed $zone_id, string $dns_id, array $__data__)`
* `ResponseInterface dnsDelete(mixed $zone_id, string $dns_id)`

For further information about specific functions, see the [CloudFlare documentation](http://developers.cloudflare.com/next/). All of these return instances of ResponseInterface, which implements the following methods:

Expand Down

0 comments on commit 3c62d91

Please sign in to comment.