@@ -3,43 +3,43 @@ |
||
3 | 3 | use Illuminate\Support\ServiceProvider; |
4 | 4 | |
5 | 5 | class ActivityLogServiceProvider extends ServiceProvider { |
6 | - /** |
|
7 | - * Indicates if loading of the provider is deferred. |
|
8 | - * |
|
9 | - * @var bool |
|
10 | - */ |
|
11 | - protected $defer = false; |
|
6 | + /** |
|
7 | + * Indicates if loading of the provider is deferred. |
|
8 | + * |
|
9 | + * @var bool |
|
10 | + */ |
|
11 | + protected $defer = false; |
|
12 | 12 | |
13 | - /** |
|
14 | - * Bootstrap the application events. |
|
15 | - * |
|
16 | - * @return void |
|
17 | - */ |
|
18 | - public function boot() |
|
19 | - { |
|
13 | + /** |
|
14 | + * Bootstrap the application events. |
|
15 | + * |
|
16 | + * @return void |
|
17 | + */ |
|
18 | + public function boot() |
|
19 | + { |
|
20 | 20 | $this->loadMigrationsFrom(__DIR__ . '/../database/migrations'); |
21 | 21 | $this->publishes([ |
22 | - __DIR__ . '/../config/activity-log.php' => config_path('activity-log.php'), |
|
22 | + __DIR__ . '/../config/activity-log.php' => config_path('activity-log.php'), |
|
23 | 23 | ]); |
24 | - } |
|
24 | + } |
|
25 | 25 | |
26 | - /** |
|
27 | - * Register the service provider. |
|
28 | - * |
|
29 | - * @return void |
|
30 | - */ |
|
31 | - public function register() |
|
32 | - { |
|
26 | + /** |
|
27 | + * Register the service provider. |
|
28 | + * |
|
29 | + * @return void |
|
30 | + */ |
|
31 | + public function register() |
|
32 | + { |
|
33 | 33 | $this->mergeConfigFrom(__DIR__ . '/../config/activity-log.php', 'activity-log'); |
34 | - } |
|
34 | + } |
|
35 | 35 | |
36 | - /** |
|
37 | - * Get the services provided by the provider. |
|
38 | - * |
|
39 | - * @return array |
|
40 | - */ |
|
41 | - public function provides() |
|
42 | - { |
|
36 | + /** |
|
37 | + * Get the services provided by the provider. |
|
38 | + * |
|
39 | + * @return array |
|
40 | + */ |
|
41 | + public function provides() |
|
42 | + { |
|
43 | 43 | return []; |
44 | - } |
|
44 | + } |
|
45 | 45 | } |