PATH:
home
/
lab2454c
/
costbloc.com
/
Modules
/
GeoLocale
/
Providers
<?php namespace Modules\GeoLocale\Providers; use Illuminate\Support\ServiceProvider; use Modules\GeoLocale\Repositories\{ CountryRepository, StateRepository, CityRepository }; use Modules\GeoLocale\Repositories\Interfaces\{ CountryRepositoryInterface, StateRepositoryInterface, CityRepositoryInterface }; class GeoLocaleServiceProvider extends ServiceProvider { /** * Register the service provider. * * @return void */ public function register() { $this->app->bind(CountryRepositoryInterface::class, CountryRepository::class); $this->app->bind(StateRepositoryInterface::class, StateRepository::class); $this->app->bind(CityRepositoryInterface::class, CityRepository::class); } }
[+]
..
[-] GeoLocaleServiceProvider.php
[edit]