Skip to content

Commit 5dbf217

Browse files
authored
Merge pull request #264 from maxmind/greg/stf-555
Use 'GeoIP'/'GeoLite' branding in documentation
2 parents 9ddb519 + 8be593b commit 5dbf217

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

dev-bin/release.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,10 +129,10 @@ else
129129
fi
130130

131131
if [ ! -d .geoip2 ]; then
132-
echo "Cloning GeoIP2 for docs"
132+
echo "Cloning GeoIP for docs"
133133
git clone git@github.com:maxmind/GeoIP2-php.git .geoip2
134134
else
135-
echo "Updating GeoIP2 for docs"
135+
echo "Updating GeoIP for docs"
136136
pushd .geoip2
137137
git pull
138138
popd

src/MinFraud/Model/GeoIp2Location.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
use GeoIp2\Record\Location;
88

99
/**
10-
* Model of the GeoIP2 Location information, including the local time.
10+
* Model of the GeoIP Location information, including the local time.
1111
*/
1212
class GeoIp2Location extends Location
1313
{

src/MinFraud/Model/Insights.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ class Insights implements \JsonSerializable
6060
public readonly string $id;
6161

6262
/**
63-
* @var IpAddress an object containing GeoIP2 and minFraud Insights
63+
* @var IpAddress an object containing GeoIP and minFraud Insights
6464
* information about the geolocated IP address
6565
*/
6666
public readonly IpAddress $ipAddress;

src/MinFraud/Model/IpAddress.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
use GeoIp2\Record\Traits;
1616

1717
/**
18-
* Model containing GeoIP2 data and the risk for the IP address.
18+
* Model containing GeoIP data and the risk for the IP address.
1919
*/
2020
class IpAddress implements \JsonSerializable
2121
{

tests/MaxMind/Test/MinFraudTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ public function testLocalesOption(): void
207207
$this->assertSame(
208208
'Royaume-Uni',
209209
$insights->ipAddress->country->name,
210-
'locales setting made it to the GeoIP2 models'
210+
'locales setting made it to the GeoIP models'
211211
);
212212
}
213213

0 commit comments

Comments
 (0)