App.php 939B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. namespace Illuminate\Support\Facades;
  3. /**
  4. * @method static string version()
  5. * @method static string basePath()
  6. * @method static string environment()
  7. * @method static bool isDownForMaintenance()
  8. * @method static void registerConfiguredProviders()
  9. * @method static \Illuminate\Support\ServiceProvider register(\Illuminate\Support\ServiceProvider|string $provider, array $options = [], bool $force = false)
  10. * @method static void registerDeferredProvider(string $provider, string $service = null)
  11. * @method static void boot()
  12. * @method static void booting(mixed $callback)
  13. * @method static void booted(mixed $callback)
  14. * @method static string getCachedServicesPath()
  15. *
  16. * @see \Illuminate\Foundation\Application
  17. */
  18. class App extends Facade
  19. {
  20. /**
  21. * Get the registered name of the component.
  22. *
  23. * @return string
  24. */
  25. protected static function getFacadeAccessor()
  26. {
  27. return 'app';
  28. }
  29. }