diff --git a/dev-bin/release.sh b/dev-bin/release.sh index 2620cc7..691aeac 100755 --- a/dev-bin/release.sh +++ b/dev-bin/release.sh @@ -129,10 +129,10 @@ else fi if [ ! -d .geoip2 ]; then - echo "Cloning GeoIP2 for docs" + echo "Cloning GeoIP for docs" git clone git@github.com:maxmind/GeoIP2-php.git .geoip2 else - echo "Updating GeoIP2 for docs" + echo "Updating GeoIP for docs" pushd .geoip2 git pull popd diff --git a/src/MinFraud/Model/GeoIp2Location.php b/src/MinFraud/Model/GeoIp2Location.php index 17eedad..1ade4ac 100644 --- a/src/MinFraud/Model/GeoIp2Location.php +++ b/src/MinFraud/Model/GeoIp2Location.php @@ -7,7 +7,7 @@ use GeoIp2\Record\Location; /** - * Model of the GeoIP2 Location information, including the local time. + * Model of the GeoIP Location information, including the local time. */ class GeoIp2Location extends Location { diff --git a/src/MinFraud/Model/Insights.php b/src/MinFraud/Model/Insights.php index e48bf56..cd5214f 100644 --- a/src/MinFraud/Model/Insights.php +++ b/src/MinFraud/Model/Insights.php @@ -60,7 +60,7 @@ class Insights implements \JsonSerializable public readonly string $id; /** - * @var IpAddress an object containing GeoIP2 and minFraud Insights + * @var IpAddress an object containing GeoIP and minFraud Insights * information about the geolocated IP address */ public readonly IpAddress $ipAddress; diff --git a/src/MinFraud/Model/IpAddress.php b/src/MinFraud/Model/IpAddress.php index 3c67168..c2b8e40 100644 --- a/src/MinFraud/Model/IpAddress.php +++ b/src/MinFraud/Model/IpAddress.php @@ -15,7 +15,7 @@ use GeoIp2\Record\Traits; /** - * Model containing GeoIP2 data and the risk for the IP address. + * Model containing GeoIP data and the risk for the IP address. */ class IpAddress implements \JsonSerializable { diff --git a/tests/MaxMind/Test/MinFraudTest.php b/tests/MaxMind/Test/MinFraudTest.php index 8b63164..ee9eeef 100644 --- a/tests/MaxMind/Test/MinFraudTest.php +++ b/tests/MaxMind/Test/MinFraudTest.php @@ -207,7 +207,7 @@ public function testLocalesOption(): void $this->assertSame( 'Royaume-Uni', $insights->ipAddress->country->name, - 'locales setting made it to the GeoIP2 models' + 'locales setting made it to the GeoIP models' ); }