3 namespace Oxbow\Providers;
5 use Illuminate\Support\ServiceProvider;
6 use Oxbow\Services\ActivityService;
7 use Oxbow\Services\SettingService;
9 class CustomFacadeProvider extends ServiceProvider
12 * Bootstrap the application services.
16 public function boot()
22 * Register the application services.
26 public function register()
28 $this->app->bind('activity', function() {
29 return new ActivityService($this->app->make('Oxbow\Activity'));
32 $this->app->bind('setting', function() {
33 return new SettingService($this->app->make('Oxbow\Setting'));