Skip to content

Commit

Permalink
rename
Browse files Browse the repository at this point in the history
  • Loading branch information
pulkitjalan committed Aug 22, 2024
1 parent f6d56cb commit 4edd2d6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
use GuzzleHttp\Exception\GuzzleException;
use PulkitJalan\IPGeoLocation\Exceptions\InvalidCredentialsException;

class IpStackDriver extends AbstractGeoIPDriver
class IPStackDriver extends AbstractGeoIPDriver
{
/**
* @param array $config
Expand Down
10 changes: 5 additions & 5 deletions src/IPGeolocationManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
use Illuminate\Support\Str;
use GuzzleHttp\Client as GuzzleClient;
use PulkitJalan\IPGeoLocation\Drivers\IPApiDriver;
use PulkitJalan\IPGeoLocation\Drivers\IpStackDriver;
use PulkitJalan\IPGeoLocation\Drivers\IPStackDriver;
use PulkitJalan\IPGeoLocation\Drivers\MaxmindApiDriver;
use PulkitJalan\IPGeoLocation\Drivers\AbstractGeoIPDriver;
use PulkitJalan\IPGeoLocation\Drivers\MaxmindDatabaseDriver;
Expand Down Expand Up @@ -56,7 +56,7 @@ public function getDriver($driver = null): AbstractGeoIPDriver
*
* @return IPApiDriver
*/
protected function createIpApiDriver(array $data): IPApiDriver
protected function createIPApiDriver(array $data): IPApiDriver
{
return new IPApiDriver($data, $this->guzzle);
}
Expand Down Expand Up @@ -84,10 +84,10 @@ protected function createMaxmindApiDriver(array $data): MaxmindApiDriver
/**
* Get the ip stack driver.
*
* @return IpStackDriver
* @return IPStackDriver
*/
protected function createIpStackDriver(array $data): IpStackDriver
protected function createIpStackDriver(array $data): IPStackDriver
{
return new IpStackDriver($data, $this->guzzle);
return new IPStackDriver($data, $this->guzzle);
}
}
File renamed without changes.

0 comments on commit 4edd2d6

Please sign in to comment.