Cache.php 341 B

1234567891011121314151617181920
  1. <?php
  2. namespace Illuminate\Support\Facades;
  3. /**
  4. * @see \Illuminate\Cache\CacheManager
  5. * @see \Illuminate\Cache\Repository
  6. */
  7. class Cache extends Facade
  8. {
  9. /**
  10. * Get the registered name of the component.
  11. *
  12. * @return string
  13. */
  14. protected static function getFacadeAccessor()
  15. {
  16. return 'cache';
  17. }
  18. }