Total Complexity | 3 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
7 | class ResourceLinksServiceProvider extends ServiceProvider |
||
8 | { |
||
9 | /** |
||
10 | * Bootstrap the application services. |
||
11 | */ |
||
12 | public function boot() |
||
13 | { |
||
14 | if ($this->app->runningInConsole()) { |
||
15 | $this->publishes([ |
||
16 | __DIR__.'/../config/resource-links.php' => config_path('resource-links.php'), |
||
17 | ], 'config'); |
||
18 | } |
||
19 | } |
||
20 | |||
21 | /** |
||
22 | * Register the application services. |
||
23 | */ |
||
24 | public function register() |
||
27 | } |
||
28 | } |
||
29 |