Total Complexity | 2 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
5 | class ServiceProvider extends \Illuminate\Support\ServiceProvider |
||
6 | { |
||
7 | protected $defer = false; |
||
8 | |||
9 | /** |
||
10 | * Bootstrap the application services. |
||
11 | * |
||
12 | * @return void |
||
13 | */ |
||
14 | public function boot() |
||
15 | { |
||
16 | $this->publishes([__DIR__.'/../config/str-tokens.php' => config_path('str-tokens.php') |
||
|
|||
17 | ], 'str-tokens-config'); |
||
18 | } |
||
19 | |||
20 | /** |
||
21 | * Register the application services. |
||
22 | * |
||
23 | * @return void |
||
24 | */ |
||
25 | public function register() |
||
31 | }); |
||
32 | } |
||
34 |