Remove leading namespace slashes in README

This makes it consistent with the middle line and is nicer to read.
This commit is contained in:
Niklas Keller
2017-09-23 11:52:05 +02:00
parent b91dd5e684
commit 85385dedf5

View File

@@ -31,9 +31,9 @@ Note that this repository is currently under development, additional classes and
## Getting Started
```php
$key = new \Cloudflare\API\Auth\APIKey('user@example.com', 'apiKey');
$key = new Cloudflare\API\Auth\APIKey('user@example.com', 'apiKey');
$adapter = new Cloudflare\API\Adapter\Guzzle($key);
$user = new \Cloudflare\API\Endpoints\User($adapter);
$user = new Cloudflare\API\Endpoints\User($adapter);
echo $user->getUserID();
```