From 73d6f15823e3d0d059785ef5275dce9961507951 Mon Sep 17 00:00:00 2001 From: Gregory Oschwald Date: Mon, 20 May 2013 15:38:21 -0700 Subject: [PATCH] Get rid of references to "Precision" --- src/GeoIP2/Exception/WebServiceException.php | 2 +- src/GeoIP2/Model/City.php | 2 +- src/GeoIP2/Model/CityIspOrg.php | 2 +- src/GeoIP2/Model/Omni.php | 2 +- src/GeoIP2/WebService/Client.php | 8 ++++---- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/GeoIP2/Exception/WebServiceException.php b/src/GeoIP2/Exception/WebServiceException.php index 9cd4188..e74c9ee 100644 --- a/src/GeoIP2/Exception/WebServiceException.php +++ b/src/GeoIP2/Exception/WebServiceException.php @@ -3,7 +3,7 @@ namespace GeoIP2\Exception; /** - * This class represents an error returned by MaxMind's GeoIP2 Precision + * This class represents an error returned by MaxMind's GeoIP2 * web service. */ class WebServiceException extends HttpException diff --git a/src/GeoIP2/Model/City.php b/src/GeoIP2/Model/City.php index 58b9342..642814b 100644 --- a/src/GeoIP2/Model/City.php +++ b/src/GeoIP2/Model/City.php @@ -3,7 +3,7 @@ namespace GeoIP2\Model; /** - * This class provides a model for the data returned by the GeoIP2 Precision + * This class provides a model for the data returned by the GeoIP2 * City end point. * * The only difference between the City, City/ISP/Org, and Omni model diff --git a/src/GeoIP2/Model/CityIspOrg.php b/src/GeoIP2/Model/CityIspOrg.php index a90a086..c4c675d 100644 --- a/src/GeoIP2/Model/CityIspOrg.php +++ b/src/GeoIP2/Model/CityIspOrg.php @@ -3,7 +3,7 @@ namespace GeoIP2\Model; /** - * This class provides a model for the data returned by the GeoIP2 Precision + * This class provides a model for the data returned by the GeoIP2 * City/ISP/Org end point. * * The only difference between the City, City/ISP/Org, and Omni model diff --git a/src/GeoIP2/Model/Omni.php b/src/GeoIP2/Model/Omni.php index 98d766b..1eddbbc 100644 --- a/src/GeoIP2/Model/Omni.php +++ b/src/GeoIP2/Model/Omni.php @@ -3,7 +3,7 @@ namespace GeoIP2\Model; /** - * This class provides a model for the data returned by the GeoIP2 Precision + * This class provides a model for the data returned by the GeoIP2 * Omni end point. * * The only difference between the City, City/ISP/Org, and Omni model diff --git a/src/GeoIP2/WebService/Client.php b/src/GeoIP2/WebService/Client.php index 7b2f73a..5b4a334 100644 --- a/src/GeoIP2/WebService/Client.php +++ b/src/GeoIP2/WebService/Client.php @@ -15,7 +15,7 @@ use Guzzle\Http\Exception\ClientErrorResponseException; use Guzzle\Http\Exception\ServerErrorResponseException; /** - * This class provides a client API for all the GeoIP Precision web service's + * This class provides a client API for all the GeoIP2 web service's * end points. The end points are Country, City, City/ISP/Org, and Omni. Each * end point returns a different set of data about an IP address, with Country * returning the least data and Omni the most. @@ -100,7 +100,7 @@ class Client } /** - * This method calls the GeoIP2 Precision City endpoint. + * This method calls the GeoIP2 City endpoint. * * @param string $ipAddress IPv4 or IPv6 address as a string. If no * address is provided, the address that the web service is called @@ -142,7 +142,7 @@ class Client } /** - * This method calls the GeoIP2 Precision City/ISP/Org endpoint. + * This method calls the GeoIP2 City/ISP/Org endpoint. * * @param string $ipAddress IPv4 or IPv6 address as a string. If no * address is provided, the address that the web service is called @@ -163,7 +163,7 @@ class Client } /** - * This method calls the GeoIP2 Precision Omni endpoint. + * This method calls the GeoIP2 Omni endpoint. * * @param string $ipAddress IPv4 or IPv6 address as a string. If no * address is provided, the address that the web service is called