equal
deleted
inserted
replaced
1 <?php namespace App\Providers; |
1 <?php |
|
2 |
|
3 namespace CorpusParole\Providers; |
2 |
4 |
3 use Illuminate\Support\ServiceProvider; |
5 use Illuminate\Support\ServiceProvider; |
4 |
6 |
5 class ConfigServiceProvider extends ServiceProvider { |
7 class ConfigServiceProvider extends ServiceProvider |
6 |
8 { |
7 /** |
9 /** |
8 * Overwrite any vendor / package configuration. |
10 * Overwrite any vendor / package configuration. |
9 * |
11 * |
10 * This service provider is intended to provide a convenient location for you |
12 * This service provider is intended to provide a convenient location for you |
11 * to overwrite any "vendor" or package configuration that you may want to |
13 * to overwrite any "vendor" or package configuration that you may want to |
12 * modify before the application handles the incoming request / command. |
14 * modify before the application handles the incoming request / command. |
13 * |
15 */ |
14 * @return void |
16 public function register() |
15 */ |
17 { |
16 public function register() |
18 config([ |
17 { |
19 // |
18 config([ |
20 ]); |
19 // |
21 } |
20 ]); |
|
21 } |
|
22 |
|
23 } |
22 } |