%PDF- %PDF-
Direktori : /var/www/html/geotechnics/api/vendor/chumper/zipper/src/Chumper/Zipper/ |
Current File : /var/www/html/geotechnics/api/vendor/chumper/zipper/src/Chumper/Zipper/ZipperServiceProvider.php |
<?php namespace Chumper\Zipper; use Illuminate\Foundation\AliasLoader; use Illuminate\Support\ServiceProvider; class ZipperServiceProvider extends ServiceProvider { /** * Indicates if loading of the provider is deferred. * * @var bool */ protected $defer = false; /** * Bootstrap the application events. */ public function boot() { } /** * Register the service provider. */ public function register() { $this->app->singleton('zipper', function ($app) { $return = $app->make('Chumper\Zipper\Zipper'); return $return; }); $this->app->booting(function () { $loader = AliasLoader::getInstance(); $loader->alias('Zipper', 'Chumper\Zipper\Facades\Zipper'); }); } /** * Get the services provided by the provider. * * @return array */ public function provides() { return ['zipper']; } }