Blame view

public/vendor/illuminate/contracts/Foundation/CachesRoutes.php 350 Bytes
86143e36f   Андрей Ларионов   Коммит вторник
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  <?php
  
  namespace Illuminate\Contracts\Foundation;
  
  interface CachesRoutes
  {
      /**
       * Determine if the application routes are cached.
       *
       * @return bool
       */
      public function routesAreCached();
  
      /**
       * Get the path to the routes cache file.
       *
       * @return string
       */
      public function getCachedRoutesPath();
  }