CachesRoutes.php 350 B

1234567891011121314151617181920
  1. <?php
  2. namespace Illuminate\Contracts\Foundation;
  3. interface CachesRoutes
  4. {
  5. /**
  6. * Determine if the application routes are cached.
  7. *
  8. * @return bool
  9. */
  10. public function routesAreCached();
  11. /**
  12. * Get the path to the routes cache file.
  13. *
  14. * @return string
  15. */
  16. public function getCachedRoutesPath();
  17. }