1 | <?php namespace Jaybizzle\Safeurl; |
||
5 | class SafeurlServiceProvider extends ServiceProvider { |
||
6 | |||
7 | /** |
||
8 | * Indicates if loading of the provider is deferred. |
||
9 | * |
||
10 | * @var bool |
||
11 | */ |
||
12 | protected $defer = false; |
||
13 | |||
14 | /** |
||
15 | * Bootstrap the application events. |
||
16 | * |
||
17 | * @return void |
||
18 | */ |
||
19 | public function boot() |
||
27 | |||
28 | /** |
||
29 | * Register the service provider. |
||
30 | * |
||
31 | * @return void |
||
32 | */ |
||
33 | public function register() |
||
42 | |||
43 | private function isLumen() |
||
47 | |||
48 | /** |
||
49 | * Get the services provided by the provider. |
||
50 | * |
||
51 | * @return array |
||
52 | */ |
||
53 | public function provides() |
||
57 | |||
58 | } |
||
59 |