Config.php 557B

123456789101112131415161718192021222324252627
  1. <?php
  2. namespace Illuminate\Support\Facades;
  3. /**
  4. * @method static bool has($key)
  5. * @method static mixed get($key, $default = null)
  6. * @method static array all()
  7. * @method static void set($key, $value = null)
  8. * @method static void prepend($key, $value)
  9. * @method static void push($key, $value)
  10. *
  11. * @see \Illuminate\Config\Repository
  12. */
  13. class Config extends Facade
  14. {
  15. /**
  16. * Get the registered name of the component.
  17. *
  18. * @return string
  19. */
  20. protected static function getFacadeAccessor()
  21. {
  22. return 'config';
  23. }
  24. }