File tree Expand file tree Collapse file tree 5 files changed +6
-7
lines changed Expand file tree Collapse file tree 5 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -39,13 +39,13 @@ There is a Laravel service provider and facade available.
3939Add 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
4545Next 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
5151Next run ` php artisan config:publish pulkitjalan/geoip ` to publish the config file.
Original file line number Diff line number Diff line change 11<?php
22
3- namespace PulkitJalan \GeoIP \Laravel \ Console ;
3+ namespace PulkitJalan \GeoIP \Console ;
44
55use PulkitJalan \GeoIP \GeoIPUpdater ;
66use Illuminate \Console \Command ;
Original file line number Diff line number Diff line change 11<?php
22
3- namespace PulkitJalan \GeoIP \Laravel \ Facades ;
3+ namespace PulkitJalan \GeoIP \Facades ;
44
55use Illuminate \Support \Facades \Facade ;
66
Original file line number Diff line number Diff line change 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 ;
66use Illuminate \Support \ServiceProvider ;
7- use PulkitJalan \GeoIP \GeoIP ;
87
98class GeoIPServiceProvider extends ServiceProvider
109{
File renamed without changes.
You can’t perform that action at this time.
0 commit comments