Advertisement
Guest User

Untitled

a guest
Feb 21st, 2020
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. <?php
  2.  
  3. namespace App\Providers;
  4.  
  5. use Illuminate\Support\ServiceProvider;
  6. use Unisharp\Laravelfilemanager\controllers\LfmController;
  7. use App\Http\Controllers\LfmController as LfmCustomController;
  8.  
  9. class AppServiceProvider extends ServiceProvider
  10. {
  11. /**
  12. * Bootstrap any application services.
  13. *
  14. * @return void
  15. */
  16. public function boot()
  17. {
  18. //
  19. }
  20.  
  21. /**
  22. * Register any application services.
  23. *
  24. * @return void
  25. */
  26. public function register()
  27. {
  28. $this->app->bind(
  29. LfmController::class,
  30. LfmCustomController::class
  31. );
  32. }
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement