| Total Complexity | 3 |
| Total Lines | 29 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | class SibsServiceProvider extends ServiceProvider |
||
| 14 | { |
||
| 15 | public function boot() |
||
| 20 | ]); |
||
| 21 | } |
||
| 22 | |||
| 23 | public function register() |
||
| 24 | { |
||
| 25 | $this->mergeConfig(); |
||
| 26 | |||
| 27 | $this->app->bind('sibs', function () { |
||
| 28 | return new SibsService(); |
||
| 29 | }); |
||
| 30 | } |
||
| 31 | |||
| 32 | /** |
||
| 33 | * Merges sibs's configs. |
||
| 34 | * |
||
| 35 | * @return void |
||
| 36 | */ |
||
| 37 | private function mergeConfig(): void |
||
| 42 | ); |
||
| 43 | } |
||
| 45 |