
Update Torann/GeoIP package from 0.2 to 1.0.0 which is being used to show country code in phone nuber in various forms.
18 lines
290 B
PHP
18 lines
290 B
PHP
<?php
|
|
|
|
namespace Torann\GeoIP\Facades;
|
|
|
|
use Illuminate\Support\Facades\Facade;
|
|
|
|
class GeoIP extends Facade
|
|
{
|
|
/**
|
|
* Get the registered name of the component.
|
|
*
|
|
* @return string
|
|
*/
|
|
protected static function getFacadeAccessor()
|
|
{
|
|
return 'geoip';
|
|
}
|
|
} |