| Total Complexity | 2 |
| Total Lines | 31 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 26 | class MattermostServiceProvider extends ServiceProvider |
||
| 27 | { |
||
| 28 | /** |
||
| 29 | * Bootstrap the application services. |
||
| 30 | * |
||
| 31 | * @return void |
||
| 32 | */ |
||
| 33 | public function boot() |
||
| 34 | { |
||
| 35 | $this->publishes([ |
||
| 36 | __DIR__.'/config/mattermost.php' => config_path('mattermost.php'), |
||
|
|
|||
| 37 | ]); |
||
| 38 | } |
||
| 39 | |||
| 40 | /** |
||
| 41 | * Register the application services. |
||
| 42 | * |
||
| 43 | * @return void |
||
| 44 | */ |
||
| 45 | public function register() |
||
| 57 | }); |
||
| 58 | } |
||
| 60 |