1 | <?php namespace Cviebrock\EloquentSluggable; |
||
12 | class ServiceProvider extends BaseServiceProvider |
||
13 | { |
||
14 | |||
15 | /** |
||
16 | * Indicates if loading of the provider is deferred. |
||
17 | * |
||
18 | * @var bool |
||
19 | */ |
||
20 | protected $defer = false; |
||
21 | |||
22 | /** |
||
23 | * Bootstrap the application events. |
||
24 | * |
||
25 | * @return void |
||
26 | */ |
||
27 | public function boot() |
||
33 | |||
34 | /** |
||
35 | * Register the service provider. |
||
36 | * |
||
37 | * @return void |
||
38 | */ |
||
39 | public function register() |
||
47 | |||
48 | } |
||
49 |