Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/content/1.getting-started/4.laravel.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Cloudflare::accounts()->list();

// or

Cloudflare::accounts()->details('ACCOUNT_ID');
Cloudflare::accounts()->get('ACCOUNT_ID');
```

If you prefer to use dependency injection over facades, then you can easily inject the manager like so:
Expand All @@ -67,7 +67,7 @@ class Foo

public function bar()
{
$this->cloudflare->accounts()->details('ACCOUNT_ID');
$this->cloudflare->accounts()->get('ACCOUNT_ID');
}
}

Expand Down
4 changes: 2 additions & 2 deletions docs/content/2.api/0.accounts/0.accounts.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ Create an account.
$response = $client->accounts()->create('Name', 'standard', 'f267e341f3dd4697bd3b9f71dd96247f');
```

## Details
## Get

Get information about a specific account that you are a member of.

```php [php]
$response = $client->accounts()->details('ACCOUNT_ID');
$response = $client->accounts()->get('ACCOUNT_ID');
```

## Update
Expand Down
2 changes: 1 addition & 1 deletion docs/content/2.api/0.accounts/1.roles.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ $response = $client->accounts()->roles()->list('ACCOUNT_ID');
Get information about a specific role for an account.

```php [php]
$response = $client->accounts()->roles()->details('ACCOUNT_ID', 'ROLE_ID');
$response = $client->accounts()->roles()->get('ACCOUNT_ID', 'ROLE_ID');
```
73 changes: 0 additions & 73 deletions docs/content/2.api/0.accounts/10.r2-buckets.md

This file was deleted.

45 changes: 0 additions & 45 deletions docs/content/2.api/0.accounts/11.r2-cors.md

This file was deleted.

38 changes: 0 additions & 38 deletions docs/content/2.api/0.accounts/12.r2-lifecycle.md

This file was deleted.

39 changes: 0 additions & 39 deletions docs/content/2.api/0.accounts/13.r2-lock.md

This file was deleted.

62 changes: 0 additions & 62 deletions docs/content/2.api/0.accounts/14.r2-custom-domains.md

This file was deleted.

28 changes: 0 additions & 28 deletions docs/content/2.api/0.accounts/15.r2-managed-domain.md

This file was deleted.

46 changes: 0 additions & 46 deletions docs/content/2.api/0.accounts/16.r2-sippy.md

This file was deleted.

Loading
Loading