whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
macsidigital
/
laravel-zoom
/
src
/
Providers
/
Upload File:
files >> //home/kckglobal/www/portal/vendor/macsidigital/laravel-zoom/src/Providers/ZoomServiceProvider.php
<?php namespace MacsiDigital\Zoom\Providers; use Illuminate\Support\ServiceProvider; class ZoomServiceProvider extends ServiceProvider { /** * Bootstrap services. * * @return void */ public function boot() { if ($this->app->runningInConsole()) { $this->publishes([ __DIR__.'/../../config/config.php' => config_path('zoom.php'), ], 'config'); } } /** * Register services. * * @return void */ public function register() { // Automatically apply the package configuration $this->mergeConfigFrom(__DIR__.'/../../config/config.php', 'zoom'); // Register the main class to use with the facade $this->app->singleton('zoom', 'MacsiDigital\Zoom\Contracts\Zoom'); $this->app->bind('MacsiDigital\Zoom\Contracts\Zoom', 'MacsiDigital\Zoom\Support\Entry'); $this->app->bind('zoom.client', 'MacsiDigital\Zoom\Support\Client'); } }
Copyright ©2021 || Defacer Indonesia