1 | <?php |
||
12 | class RoutesServiceProvider extends AbstractSignatureServiceProvider implements BootableServiceProviderInterface |
||
13 | { |
||
14 | |||
15 | /** |
||
16 | * @inheritdoc |
||
17 | */ |
||
18 | public function register() |
||
21 | |||
22 | /** |
||
23 | * @inheritdoc |
||
24 | */ |
||
25 | public function boot() |
||
35 | |||
36 | public function loadRoutes() |
||
39 | |||
40 | /** |
||
41 | * Determine if the application routes are cached. |
||
42 | * |
||
43 | * @return bool |
||
44 | */ |
||
45 | protected function routesAreCached() |
||
49 | |||
50 | /** |
||
51 | * @inheritdoc |
||
52 | */ |
||
53 | public function provides() |
||
57 | } |
||
58 |