From 58673466c0d9d27a59701c4ea9513496e8b38630 Mon Sep 17 00:00:00 2001 From: Gregory Oschwald Date: Mon, 13 May 2013 10:29:14 -0700 Subject: [PATCH] Webservice => WebService --- README.md | 10 +++++----- ...ceException.php => WebServiceException.php} | 2 +- .../{Webservice => WebService}/Client.php | 18 +++++++++--------- .../{Webservice => WebService}/ClientTest.php | 6 +++--- 4 files changed, 18 insertions(+), 18 deletions(-) rename src/GeoIP2/Exception/{WebserviceException.php => WebServiceException.php} (90%) rename src/GeoIP2/{Webservice => WebService}/Client.php (95%) rename tests/GeoIP2/Test/{Webservice => WebService}/ClientTest.php (98%) diff --git a/README.md b/README.md index 8b15ba3..66d0188 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ In the future, this distribution will also provide the same API for the GeoIP2 downloadable databases. These databases have not yet been released as a downloadable product. -See GeoIP2\Webservice\Client for details on the web service client +See GeoIP2\WebService\Client for details on the web service client API. ## Installation ## @@ -52,7 +52,7 @@ require 'vendor/autoload.php'; ## Usage ## -To use this API, you must create a new ``\GeoIP2\Webservice\Client`` +To use this API, you must create a new ``\GeoIP2\WebService\Client`` object with your ``$userId`` and ``$licenseKey``, then you call the method corresponding to a specific end point, passing it the IP address you want to look up. @@ -68,7 +68,7 @@ See the API documentation for more details. ```php omni('24.24.24.24'); @@ -82,9 +82,9 @@ http://dev.maxmind.com/geoip2/geoip/web-services for the GeoIP2 web service docs. If the web service returns an explicit error document, this is thrown as a -```\GeoIP2\Exception\WebserviceException```. If some other sort of transport +```\GeoIP2\Exception\WebServiceException```. If some other sort of transport error occurs, this is thrown as a ```\GeoIP2\Exception\HttpException```. -The difference is that the webservice error includes an error message and +The difference is that the web service error includes an error message and error code delivered by the web service. The latter is thrown when some sort of unanticipated error occurs, such as the web service returning a 500 or an invalid error document. diff --git a/src/GeoIP2/Exception/WebserviceException.php b/src/GeoIP2/Exception/WebServiceException.php similarity index 90% rename from src/GeoIP2/Exception/WebserviceException.php rename to src/GeoIP2/Exception/WebServiceException.php index 8134f79..9cd4188 100644 --- a/src/GeoIP2/Exception/WebserviceException.php +++ b/src/GeoIP2/Exception/WebServiceException.php @@ -6,7 +6,7 @@ namespace GeoIP2\Exception; * This class represents an error returned by MaxMind's GeoIP2 Precision * web service. */ -class WebserviceException extends HttpException +class WebServiceException extends HttpException { /** * The code returned by the MaxMind web service diff --git a/src/GeoIP2/Webservice/Client.php b/src/GeoIP2/WebService/Client.php similarity index 95% rename from src/GeoIP2/Webservice/Client.php rename to src/GeoIP2/WebService/Client.php index 7d22da0..7b2f73a 100644 --- a/src/GeoIP2/Webservice/Client.php +++ b/src/GeoIP2/WebService/Client.php @@ -1,10 +1,10 @@