Geocoder\Provider\Geonames::__construct PHP Method

__construct() public method

public __construct ( Http\Client\HttpClient $client, string $username, string $locale = null )
$client Http\Client\HttpClient An HTTP adapter
$username string Username login (Free registration at http://www.geonames.org/login)
$locale string A locale (optional)
    public function __construct(HttpClient $client, $username, $locale = null)
    {
        parent::__construct($client);
        $this->username = $username;
        $this->locale = $locale;
    }