| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | public function boot() |
||
| 16 | {
|
||
| 17 | if ($this->app->runningInConsole()) {
|
||
| 18 | $this->publishes([ |
||
| 19 | __DIR__ . '/../config/config-avstelecomsms.php' => config_path('avstelecomsms.php'),
|
||
| 20 | ], 'config'); |
||
| 21 | } |
||
| 22 | $this->app->singleton(Avstelecomsms::class, function () {
|
||
| 23 | return new Avstelecomsms(); |
||
| 24 | }); |
||
| 25 | } |
||
| 26 | |||
| 46 |