1 | <?php namespace Padosoft\Laravel\Https; |
||
7 | class LaravelHttpsServiceProvider extends ServiceProvider |
||
8 | { |
||
9 | |||
10 | /** |
||
11 | * Indicates if loading of the provider is deferred. |
||
12 | * |
||
13 | * @var bool |
||
14 | */ |
||
15 | protected $defer = false; |
||
16 | |||
17 | /** |
||
18 | * Bootstrap the application events. |
||
19 | * |
||
20 | * @param Router $router |
||
21 | */ |
||
22 | public function boot(Router $router) |
||
26 | |||
27 | /** |
||
28 | * Register the service provider. |
||
29 | * |
||
30 | * @return void |
||
31 | */ |
||
32 | public function register() |
||
38 | } |
||
39 | |||
40 |