blob: a5c3455eb5dd346a3370df035b5bbd6dc6698014 [file] [log] [blame]
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +02001<?php
2
3namespace Illuminate\Contracts\Foundation;
4
5interface CachesRoutes
6{
7 /**
8 * Determine if the application routes are cached.
9 *
10 * @return bool
11 */
12 public function routesAreCached();
13
14 /**
15 * Get the path to the routes cache file.
16 *
17 * @return string
18 */
19 public function getCachedRoutesPath();
20}