D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
dateitor
/
www
/
vendor
/
nwidart
/
laravel-modules
/
src
/
Providers
/
Filename :
BootstrapServiceProvider.php
back
Copy
<?php namespace Nwidart\Modules\Providers; use Illuminate\Support\ServiceProvider; use Nwidart\Modules\Contracts\RepositoryInterface; class BootstrapServiceProvider extends ServiceProvider { /** * Booting the package. */ public function boot(): void { $this->app[RepositoryInterface::class]->boot(); } /** * Register the provider. */ public function register(): void { $this->app[RepositoryInterface::class]->register(); } }