Stevebauman\Location\LocationServiceProvider::register PHP Method

register() public method

Register the service provider.
public register ( )
    public function register()
    {
        $config = __DIR__ . '/Config/config.php';
        $this->publishes([$config => config_path('location.php')], 'config');
        $this->mergeConfigFrom($config, 'location');
    }
LocationServiceProvider