AppServiceProvider.php 654 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. namespace App\Providers;
  3. use Illuminate\Support\ServiceProvider;
  4. class AppServiceProvider extends ServiceProvider
  5. {
  6. /**
  7. * Bootstrap any application services.
  8. *
  9. * @return void
  10. */
  11. public function boot()
  12. {
  13. //
  14. }
  15. /**
  16. * Register any application services.
  17. *
  18. * @return void
  19. */
  20. public function register()
  21. {
  22. /*if ($this->app->environment() !== 'production') {
  23. $this->app->register(\Way\Generators\GeneratorsServiceProvider::class);
  24. $this->app->register(\Xethron\MigrationsGenerator\MigrationsGeneratorServiceProvider::class);
  25. }*/
  26. }
  27. }