Removed the leading backslash on imports

This commit is contained in:
Benjamin Morel 2013-10-16 17:27:40 +00:00
parent 167433de0c
commit e8fa9a3a24

View File

@ -79,7 +79,7 @@ See the API documentation for more details.
```php ```php
<?php <?php
require_once 'vendor/autoload.php'; require_once 'vendor/autoload.php';
use \GeoIp2\Database\Reader; use GeoIp2\Database\Reader;
// This creates the Reader object, which should be reused across // This creates the Reader object, which should be reused across
// lookups. // lookups.
@ -127,7 +127,7 @@ See the API documentation for more details.
```php ```php
<?php <?php
require_once 'vendor/autoload.php'; require_once 'vendor/autoload.php';
use \GeoIp2\WebService\Client; use GeoIp2\WebService\Client;
// This creates a Client object that can be reused across requests. // This creates a Client object that can be reused across requests.
// Replace "42" with your user ID and "license_key" with your license // Replace "42" with your user ID and "license_key" with your license