Skip to content

Commit 5e7ee8a

Browse files
committed
fixes
1 parent bbccb93 commit 5e7ee8a

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@ There is a Laravel service provider and facade available.
3939
Add the following to the `providers` array in your `config/app.php`
4040

4141
```php
42-
'PulkitJalan\GeoIP\Laravel\GeoIPServiceProvider'
42+
'PulkitJalan\GeoIP\GeoIPServiceProvider'
4343
```
4444

4545
Next add the following to the `aliases` array in your `config/app.php`
4646

4747
```php
48-
'GeoIP' => 'PulkitJalan\GeoIP\Laravel\Facades\GeoIP'
48+
'GeoIP' => 'PulkitJalan\GeoIP\Facades\GeoIP'
4949
```
5050

5151
Next run `php artisan config:publish pulkitjalan/geoip` to publish the config file.

src/Laravel/Console/UpdateCommand.php renamed to src/Console/UpdateCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace PulkitJalan\GeoIP\Laravel\Console;
3+
namespace PulkitJalan\GeoIP\Console;
44

55
use PulkitJalan\GeoIP\GeoIPUpdater;
66
use Illuminate\Console\Command;

src/Laravel/Facades/GeoIP.php renamed to src/Facades/GeoIP.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace PulkitJalan\GeoIP\Laravel\Facades;
3+
namespace PulkitJalan\GeoIP\Facades;
44

55
use Illuminate\Support\Facades\Facade;
66

src/Laravel/GeoIPServiceProvider.php renamed to src/GeoIPServiceProvider.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
<?php
22

3-
namespace PulkitJalan\GeoIP\Laravel;
3+
namespace PulkitJalan\GeoIP;
44

5-
use PulkitJalan\GeoIP\Laravel\Console\UpdateCommand;
5+
use PulkitJalan\GeoIP\Console\UpdateCommand;
66
use Illuminate\Support\ServiceProvider;
7-
use PulkitJalan\GeoIP\GeoIP;
87

98
class GeoIPServiceProvider extends ServiceProvider
109
{
File renamed without changes.

0 commit comments

Comments
 (0)