You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ConfigServiceProvider.php 502B

1234567891011121314151617181920212223
  1. <?php namespace App\Providers;
  2. use Illuminate\Support\ServiceProvider;
  3. class ConfigServiceProvider extends ServiceProvider {
  4. /**
  5. * Overwrite any vendor / package configuration.
  6. *
  7. * This service provider is intended to provide a convenient location for you
  8. * to overwrite any "vendor" or package configuration that you may want to
  9. * modify before the application handles the incoming request / command.
  10. *
  11. * @return void
  12. */
  13. public function register()
  14. {
  15. config([
  16. //
  17. ]);
  18. }
  19. }